Method: Kramdown::Converter::Latex#convert_typographic_sym

Defined in:
lib/kramdown/converter/latex.rb

#convert_typographic_sym(el, _opts) ⇒ Object

:nodoc:



542
543
544
545
546
547
548
# File 'lib/kramdown/converter/latex.rb', line 542

def convert_typographic_sym(el, _opts)
  if (result = @options[:typographic_symbols][el.value])
    escape(result)
  else
    TYPOGRAPHIC_SYMS[el.value]
  end
end