Module: Mustdown::MustdownHelper

Defined in:
app/helpers/mustdown/mustdown_helper.rb

Instance Method Summary collapse

Instance Method Details

#markdown(*args) ⇒ Object

Public: Calls Mustdown.markdown.

See Mustdown.markdown.



10
11
12
# File 'app/helpers/mustdown/mustdown_helper.rb', line 10

def markdown(*args)
  Mustdown.markdown(*args).html_safe
end

#mustache(*args) ⇒ Object

Public: Calls Mustdown.mustache.

See Mustdown.mustache.



17
18
19
# File 'app/helpers/mustdown/mustdown_helper.rb', line 17

def mustache(*args)
  Mustdown.mustache(*args).html_safe
end

#mustdown(*args) ⇒ Object

Public: Calls Mustdown.mustdown.

See Mustdown.mustdown.



24
25
26
# File 'app/helpers/mustdown/mustdown_helper.rb', line 24

def mustdown(*args)
  Mustdown.mustdown(*args).html_safe
end