class markdown::HtmlWriter
sys::Obj markdown::HtmlWriter
@Js
HTML writer for markdown rendering
- line
-
This line()
write a newline character if the last character written wasn't a newline
- make
-
new make(OutStream out)
- raw
-
Write the raw string
- tag
-
This tag(Str name, [Str:Str?]? attrs := null, Bool empty := false)
Write a tag with the given name ("foo" - opening tag, "/foo" - closing tag) with the given attributes. If empty is true an empty tag is written (e.g. <img />)
- text
-
Write the escaped text
- w