mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
11 lines
No EOL
277 B
Ruby
11 lines
No EOL
277 B
Ruby
module Middleman::Renderers::Markdown
|
|
class << self
|
|
def registered(app)
|
|
app.set :markdown_engine, ::Tilt::MarukuTemplate
|
|
app.after_configuration do
|
|
::Tilt.prefer(app.settings.markdown_engine)
|
|
end
|
|
end
|
|
alias :included :registered
|
|
end
|
|
end |