Class: Administrate::Field::Markdown

Inherits:
Base
  • Object
show all
Defined in:
lib/administrate/field/markdown.rb

Defined Under Namespace

Classes: Engine

Constant Summary collapse

VERSION =
"0.0.2"

Instance Method Summary collapse

Instance Method Details

#renderedObject



13
14
15
# File 'lib/administrate/field/markdown.rb', line 13

def rendered
  Kramdown::Document.new(data).to_html
end

#truncateObject



17
18
19
# File 'lib/administrate/field/markdown.rb', line 17

def truncate
  data.to_s[0...truncation_length]
end