...

Text file src/github.com/yuin/goldmark/_test/options.txt

Documentation: github.com/yuin/goldmark/_test

     11
     2//- - - - - - - - -//
     3## Title 0
     4
     5## Title1 # {#id_1 .class-1}
     6
     7## Title2 {#id_2}
     8
     9## Title3 ## {#id_3 .class-3}
    10
    11## Title4 ## {data-attr3=value3}
    12
    13## Title5 ## {#id_5 data-attr5=value5}
    14
    15## Title6 ## {#id_6 .class6 data-attr6=value6}
    16
    17## Title7 ## {#id_7 data-attr7="value \"7"}
    18
    19## Title8 {#id .className data-attrName=attrValue class="class1 class2"}
    20//- - - - - - - - -//
    21<h2 id="title-0">Title 0</h2>
    22<h2 id="id_1" class="class-1">Title1</h2>
    23<h2 id="id_2">Title2</h2>
    24<h2 id="id_3" class="class-3">Title3</h2>
    25<h2 data-attr3="value3" id="title4">Title4</h2>
    26<h2 id="id_5" data-attr5="value5">Title5</h2>
    27<h2 id="id_6" class="class6" data-attr6="value6">Title6</h2>
    28<h2 id="id_7" data-attr7="value &quot;7">Title7</h2>
    29<h2 id="id" class="className class1 class2" data-attrName="attrValue">Title8</h2>
    30//= = = = = = = = = = = = = = = = = = = = = = = =//
    31
    322
    33//- - - - - - - - -//
    34#
    35# FOO
    36//- - - - - - - - -//
    37<h1 id="heading"></h1>
    38<h1 id="foo">FOO</h1>
    39//= = = = = = = = = = = = = = = = = = = = = = = =//
    40
    413
    42//- - - - - - - - -//
    43## `records(self, zone, params={})`
    44//- - - - - - - - -//
    45<h2 id="recordsself-zone-params"><code>records(self, zone, params={})</code></h2>
    46//= = = = = = = = = = = = = = = = = = = = = = = =//
    47
    48
    494
    50//- - - - - - - - -//
    51## Test {#hey .sort,class=fine,class=shell} Doesn't matter
    52//- - - - - - - - -//
    53<h2 id="test-hey-sortclassfineclassshell-doesnt-matter">Test {#hey .sort,class=fine,class=shell} Doesn't matter</h2>
    54//= = = = = = = = = = = = = = = = = = = = = = = =//
    55
    56
    575
    58//- - - - - - - - -//
    59## Test ## {#hey .sort,class=fine,class=shell} Doesn't matter
    60//- - - - - - - - -//
    61<h2 id="test--hey-sortclassfineclassshell-doesnt-matter">Test ## {#hey .sort,class=fine,class=shell} Doesn't matter</h2>
    62//= = = = = = = = = = = = = = = = = = = = = = = =//
    63
    64
    656: class must be a string
    66//- - - - - - - - -//
    67# Test ## {class=0#.}
    68//- - - - - - - - -//
    69<h1 id="test--class0">Test ## {class=0#.}</h1>
    70//= = = = = = = = = = = = = = = = = = = = = = = =//
    71
    72
    737: short handed ids can contain hyphens ("-"), underscores ("_"), colons (":"), and periods (".")
    74//- - - - - - - - -//
    75# Test ## {#id-foo_bar:baz.qux .foobar}
    76//- - - - - - - - -//
    77<h1 id="id-foo_bar:baz.qux" class="foobar">Test</h1>
    78//= = = = = = = = = = = = = = = = = = = = = = = =//

View as plain text