AtlatestRepositorysigil-markdown
sigil-markdown / tree / bench / goldenelements.sxml
1
(document (h1 "H1 Heading") (h2 "H2 Heading") (h3 "H3 Heading") (h4 "H4 Heading") (h5 "H5 Heading") (h6 "H6 Heading") (p "Paragraph one with plain text and nothing special at all here folks.") (p "Paragraph two spanning multiple source lines that should join with spaces.") (ul (li "unordered a") (li "unordered b") (li "unordered c ") (li "star bullet a") (li "star bullet b ") (li "plus bullet a") (li "plus bullet b ")) (ol (li "ordered one") (li "ordered two") (li "ordered three")) (blockquote "blockquote line one blockquote line two") (pre (@ (lang "python")) "def hello():\n return \"world\"") (pre "plain fence no lang\nsecond line") (pre "indented code line one\nindented code line two") (table (thead (tr (th "Col A") (th (@ (style "text-align: center")) "Col B") (th (@ (style "text-align: right")) "Col C"))) (tbody (tr (td "a1") (td (@ (style "text-align: center")) "b1") (td (@ (style "text-align: right")) "c1")) (tr (td "a2") (td (@ (style "text-align: center")) "b2") (td (@ (style "text-align: right")) "c2")))) (hr) (hr) (hr) (p "Final paragraph after rules."))