class Jekyll::Scholar::Tiny

Public Instance Methods

apply(value) click to toggle source
# File lib/jekyll/scholar/plugins/tiny.rb, line 4
def apply(value)
  # Use of \g<1> pattern back-reference to allow for capturing nested {} groups.
  # The first (outermost) capture of $1 is used.
  value.to_s.gsub(/\\tiny(\{(?:[^{}]|\g<1>)*\})/) {
    "<span class=\"tiny\">#{$1[1..-2]}</span>"
  }
end