Class: Lookbook::Markdown

Inherits:
Object
  • Object
show all
Defined in:
lib/lookbook/markdown.rb

Defined Under Namespace

Classes: Renderer

Constant Summary collapse

DEFAULT_OPTIONS =
{
  tables: true,
  fenced_code_blocks: true,
  disable_indented_code_blocks: true,
  strikethrough: true,
  highlight: true,
  with_toc_data: true
}

Class Method Summary collapse

Class Method Details

.render(text) ⇒ Object



14
15
16
17
# File 'lib/lookbook/markdown.rb', line 14

def self.render(text)
  markdown = Redcarpet::Markdown.new(Renderer, Lookbook.config.markdown_options)
  markdown.render(text).html_safe
end