module YARD::Templates::Helpers::HtmlHelper

def html_markup_ruby(source)

Other tags:
    Since: - 0.7.0

Returns:
  • (String) - the highlighted HTML

Parameters:
  • source (String) -- the Ruby source
def html_markup_ruby(source)
  '<pre class="code ruby">' + html_syntax_highlight(source, :ruby) + '</pre>'
end