mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
12 lines
No EOL
209 B
Ruby
12 lines
No EOL
209 B
Ruby
module Middleman
|
|
module Renderers
|
|
module Markdown
|
|
class << self
|
|
def registered(app)
|
|
require "rdiscount"
|
|
end
|
|
alias :included :registered
|
|
end
|
|
end
|
|
end
|
|
end |