Module: MarkdownUI::Renderers::Emphasis

Included in:
MarkdownUI::Renderer
Defined in:
lib/markdown-ui/renderers/emphasis.rb

Instance Method Summary collapse

Instance Method Details

#emphasis(text) ⇒ Object



4
5
6
# File 'lib/markdown-ui/renderers/emphasis.rb', line 4

def emphasis(text)
  is_icon?(text) ? render_icon(text) : render_flag(text)
end