markdown2 $ MdHtmlInline :: SELF
Type of this instance, automatically specialized in every classmarkdown2 :: markdown_md_rendering $ MdHtmlInline :: process_len
markdown2 :: markdown_html_rendering $ MdHtmlInline :: render_html
Renderself as HTML
markdown2 :: markdown_latex_rendering $ MdHtmlInline :: render_latex
Renderself as HTML
markdown2 :: markdown_man_rendering $ MdHtmlInline :: render_man
Renderself as Manpage format
markdown2 :: markdown_md_rendering $ MdHtmlInline :: render_md
Renderself as Markdown
markdown2 $ MdHtmlInline :: to_s_attrs
Returnsself attributes as a String
markdown2 :: MdNode :: _location
Node location in original markdownmarkdown2 :: MdNode :: accept_nitunit
core :: Object :: class_factory
Implementation used byget_class to create the specific class.
markdown2 :: MdNode :: defaultinit
core :: Object :: defaultinit
markdown2 :: MdHtmlInline :: 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 :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).markdown2 :: MdNode :: post_process
Accept the visit of aMdPostProcessor
markdown2 :: MdNode :: process_len
markdown2 :: MdNode :: render_raw_text
Renderself as raw text
# An inlined html string
class MdHtmlInline
super MdNode
# Literal content
var literal: String is writable
redef fun to_s_attrs do return "{super}, literal={literal}"
end
lib/markdown2/markdown_ast.nit:422,1--430,3
redef class MdHtmlInline
redef fun render_html(v) do
v.add_raw literal
end
end
lib/markdown2/markdown_html_rendering.nit:374,1--378,3
redef class MdHtmlInline
redef fun render_latex(v) do
v.add_raw "\\texttt\{"
v.add_raw v.latex_escape(literal)
v.add_raw "\}"
end
end
lib/markdown2/markdown_latex_rendering.nit:359,1--365,3
redef class MdHtmlInline
redef fun render_man(v) do
v.add literal
end
end
lib/markdown2/markdown_man_rendering.nit:209,1--213,3