1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
Header 1 {#header1}
========
## Header 2 ##
{#header2}
## The Site {.main}
## The Site ##
{.main .shine #the-site}
[link](url){#id1 .class1} {#id2 .class2}
**bold**{.bold} paragraph
{#text}
this is just normal text {.main .shine #the-site}
some { brackets
some } brackets
some { } brackets
A link inside of an emphasis tag: *[link](http://url.com){target="_blank"}*.
Attributes without quote and non-whitespace char [link](http://url.com){target=_blank}
Attributes without quote and non-whitespace char and a dot [link](http://url.com){target=_blank}.
Multiple attributes without quote and non-whitespace char and a dot [link](http://url.com){#id .class target=_blank}.
{some-text}
{boolean-attribute="boolean-attribute"}
A paragraph containing {{ mustache }} templating
A paragraph ending with {{ mustache }} templating
{{ mustache }} A paragraph starting with mustache templating
a. [Some{text}](https://example.com).
b. [Some{.text}](https://example.com).
c. [Some](https://example.com){.text}.
d. [Some{text}](https://example.com).
e. [Some](https://example.com){text="text"}.
f. [Some](https://example.com){text=true}.
g. [Some{{text}}](https://example.com).
{hello="hello"}
some
{.test hello="hello"}
some
{hello="hello" .test}
some
{hello="hello" goodbye="goodbye"}
some
|