11 lines
351 B
Ruby
11 lines
351 B
Ruby
module EditableContentHelper
|
|
def editable_content_for(path, key, default: nil, create_rich: false)
|
|
@content = EditableContent.find_by(path: "contributions/other", key: key)
|
|
@content.content.present? ? @content.content : default
|
|
end
|
|
|
|
def markdown_to_html(string)
|
|
raw Kramdown::Document.new(string, { input: "GFM" }).to_html
|
|
end
|
|
end
|