Class: ComfortableMexicanSofa::Tag::PageMarkdown

Inherits:
Object
  • Object
show all
Includes:
ComfortableMexicanSofa::Tag
Defined in:
lib/comfortable_mexican_sofa/tags/page_markdown.rb

Constant Summary

Constants included from ComfortableMexicanSofa::Tag

IDENTIFIER_REGEX, TOKENIZER_REGEX

Instance Attribute Summary

Attributes included from ComfortableMexicanSofa::Tag

#blockable, #identifier, #namespace, #params, #parent

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.regex_tag_signature(identifier = nil) ⇒ Object



4
5
6
7
# File 'lib/comfortable_mexican_sofa/tags/page_markdown.rb', line 4

def self.regex_tag_signature(identifier = nil)
  identifier ||= IDENTIFIER_REGEX
  /\{\{\s*cms:page:(#{identifier}):markdown\s*\}\}/
end

Instance Method Details

#contentObject



9
10
11
# File 'lib/comfortable_mexican_sofa/tags/page_markdown.rb', line 9

def content
  block.content
end

#renderObject



13
14
15
# File 'lib/comfortable_mexican_sofa/tags/page_markdown.rb', line 13

def render
  Kramdown::Document.new(content.to_s).to_html
end