class BraceMarkup::Ast::Tags::Comment

This is a helper {{@name param: 29r}}{{/name}}

Public Instance Methods

parse_body() click to toggle source
# File lib/brace_markup/ast/tags/comment.rb, line 14
def parse_body
  BraceMarkup.parse(@body)
end
render(context, *args) click to toggle source
# File lib/brace_markup/ast/tags/comment.rb, line 10
def render(context, *args)
  ''
end
render_body(context) click to toggle source
# File lib/brace_markup/ast/tags/comment.rb, line 18
def render_body(context)
  BraceMarkup.render(@body, context)
end