class Phlex::SGML
def comment(&)
Wrap the output in an HTML comment.
def comment(&) context = @_context return if context.fragments && !context.in_target_fragment buffer = context.buffer buffer << "<!-- " __yield_content__(&) buffer << " -->" nil end