mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 13:54:05 -06:00
79 lines
2.2 KiB
Plaintext
79 lines
2.2 KiB
Plaintext
1
|
|
//- - - - - - - - -//
|
|
## Title 0
|
|
|
|
## Title1 # {#id_1 .class-1}
|
|
|
|
## Title2 {#id_2}
|
|
|
|
## Title3 ## {#id_3 .class-3}
|
|
|
|
## Title4 ## {data-attr3=value3}
|
|
|
|
## Title5 ## {#id_5 data-attr5=value5}
|
|
|
|
## Title6 ## {#id_6 .class6 data-attr6=value6}
|
|
|
|
## Title7 ## {#id_7 data-attr7="value \"7"}
|
|
|
|
## Title8 {#id .className data-attrName=attrValue class="class1 class2"}
|
|
//- - - - - - - - -//
|
|
<h2 id="title-0">Title 0</h2>
|
|
<h2 id="id_1" class="class-1">Title1</h2>
|
|
<h2 id="id_2">Title2</h2>
|
|
<h2 id="id_3" class="class-3">Title3</h2>
|
|
<h2 data-attr3="value3" id="title4">Title4</h2>
|
|
<h2 id="id_5" data-attr5="value5">Title5</h2>
|
|
<h2 id="id_6" class="class6" data-attr6="value6">Title6</h2>
|
|
<h2 id="id_7" data-attr7="value "7">Title7</h2>
|
|
<h2 id="id" class="className class1 class2" data-attrName="attrValue">Title8</h2>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
2
|
|
//- - - - - - - - -//
|
|
#
|
|
# FOO
|
|
//- - - - - - - - -//
|
|
<h1 id="heading"></h1>
|
|
<h1 id="foo">FOO</h1>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
3
|
|
//- - - - - - - - -//
|
|
## `records(self, zone, params={})`
|
|
//- - - - - - - - -//
|
|
<h2 id="recordsself-zone-params"><code>records(self, zone, params={})</code></h2>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
|
|
4
|
|
//- - - - - - - - -//
|
|
## Test {#hey .sort,class=fine,class=shell} Doesn't matter
|
|
//- - - - - - - - -//
|
|
<h2 id="test-hey-sortclassfineclassshell-doesnt-matter">Test {#hey .sort,class=fine,class=shell} Doesn't matter</h2>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
|
|
5
|
|
//- - - - - - - - -//
|
|
## Test ## {#hey .sort,class=fine,class=shell} Doesn't matter
|
|
//- - - - - - - - -//
|
|
<h2 id="test--hey-sortclassfineclassshell-doesnt-matter">Test ## {#hey .sort,class=fine,class=shell} Doesn't matter</h2>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
|
|
6: class must be a string
|
|
//- - - - - - - - -//
|
|
# Test ## {class=0#.}
|
|
//- - - - - - - - -//
|
|
<h1 id="test--class0">Test ## {class=0#.}</h1>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|
|
|
|
|
|
7: short handed ids can contain hyphens ("-"), underscores ("_"), colons (":"), and periods (".")
|
|
//- - - - - - - - -//
|
|
# Test ## {#id-foo_bar:baz.qux .foobar}
|
|
//- - - - - - - - -//
|
|
<h1 id="id-foo_bar:baz.qux" class="foobar">Test</h1>
|
|
//= = = = = = = = = = = = = = = = = = = = = = = =//
|