Class: BuildMaster::MarkdownEngine

Inherits:
Object
  • Object
show all
Includes:
ContentEngine
Defined in:
lib/buildmaster/site/content_engine_repository.rb

Instance Method Summary collapse

Methods included from ContentEngine

#process_content_with_title

Instance Method Details

#convert_to_html(full_content) ⇒ Object



71
72
73
74
# File 'lib/buildmaster/site/content_engine_repository.rb', line 71

def convert_to_html(full_content)
require 'bluecloth'
  process_content_with_title(full_content) {|content| BlueCloth.new(content).to_html}
end