\r
or \n
)markdown2 $ MdSoftLineBreak :: SELF
Type of this instance, automatically specialized in every classmarkdown2 :: markdown_html_rendering $ MdSoftLineBreak :: render_html
Renderself
as HTML
markdown2 :: markdown_md_rendering $ MdSoftLineBreak :: render_md
Renderself
as Markdown
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
markdown2 :: MdLineBreak :: defaultinit
markdown2 :: MdNode :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
markdown2 :: MdNode :: location=
Node location in original markdowncore :: Object :: output_class_name
Display class name on stdout (debug only).markdown2 :: MdNode :: post_process
Accept the visit of aMdPostProcessor
markdown2 :: MdNode :: render_raw_text
Renderself
as raw text
# A soft line breack (`\r` or `\n`)
class MdSoftLineBreak
super MdLineBreak
end
lib/markdown2/markdown_ast.nit:376,1--379,3
redef class MdSoftLineBreak
redef fun render_html(v) do
v.add_raw "\n"
end
end
lib/markdown2/markdown_html_rendering.nit:344,1--348,3