最后活跃于 1720751158

修订 03d63d8fab6a13a538f141cab6f6b756584d21ac

gistfile1.txt 原始文件
1---
2__Advertisement :)__
3
4- __[pica](https://nodeca.github.io/pica/demo/)__ - high quality and fast image
5 resize in browser.
6- __[babelfish](https://github.com/nodeca/babelfish/)__ - developer friendly
7 i18n with plurals support and easy syntax.
8
9You will like those projects!
10
11---
12
13# h1 Heading 8-)
14## h2 Heading
15### h3 Heading
16#### h4 Heading
17##### h5 Heading
18###### h6 Heading
19
20
21## Horizontal Rules
22
23___
24
25---
26
27***
28
29
30## Typographic replacements
31
32Enable typographer option to see result.
33
34(c) (C) (r) (R) (tm) (TM) (p) (P) +-
35
36test.. test... test..... test?..... test!....
37
38!!!!!! ???? ,, -- ---
39
40"Smartypants, double quotes" and 'single quotes'
41
42
43## Emphasis
44
45**This is bold text**
46
47__This is bold text__
48
49*This is italic text*
50
51_This is italic text_
52
53~~Strikethrough~~
54
55
56## Blockquotes
57
58
59> Blockquotes can also be nested...
60>> ...by using additional greater-than signs right next to each other...
61> > > ...or with spaces between arrows.
62
63
64## Lists
65
66Unordered
67
68+ Create a list by starting a line with `+`, `-`, or `*`
69+ Sub-lists are made by indenting 2 spaces:
70 - Marker character change forces new list start:
71 * Ac tristique libero volutpat at
72 + Facilisis in pretium nisl aliquet
73 - Nulla volutpat aliquam velit
74+ Very easy!
75
76Ordered
77
781. Lorem ipsum dolor sit amet
792. Consectetur adipiscing elit
803. Integer molestie lorem at massa
81
82
831. You can use sequential numbers...
841. ...or keep all the numbers as `1.`
85
86Start numbering with offset:
87
8857. foo
891. bar
90
91
92## Code
93
94Inline `code`
95
96Indented code
97
98 // Some comments
99 line 1 of code
100 line 2 of code
101 line 3 of code
102
103
104Block code "fences"
105
106```
107Sample text here...
108```
109
110Syntax highlighting
111
112``` js
113var foo = function (bar) {
114 return bar++;
115};
116
117console.log(foo(5));
118```
119
120## Tables
121
122| Option | Description |
123| ------ | ----------- |
124| data | path to data files to supply the data that will be passed into templates. |
125| engine | engine to be used for processing templates. Handlebars is the default. |
126| ext | extension to be used for dest files. |
127
128Right aligned columns
129
130| Option | Description |
131| ------:| -----------:|
132| data | path to data files to supply the data that will be passed into templates. |
133| engine | engine to be used for processing templates. Handlebars is the default. |
134| ext | extension to be used for dest files. |
135
136
137## Links
138
139[link text](http://dev.nodeca.com)
140
141[link with title](http://nodeca.github.io/pica/demo/ "title text!")
142
143Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
144
145
146## Images
147
148![Minion](https://octodex.github.com/images/minion.png)
149![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
150
151Like links, Images also have a footnote style syntax
152
153![Alt text][id]
154
155With a reference later in the document defining the URL location:
156
157[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
158
159
160## Plugins
161
162The killer feature of `markdown-it` is very effective support of
163[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
164
165
166### [Emojies](https://github.com/markdown-it/markdown-it-emoji)
167
168> Classic markup: :wink: :cry: :laughing: :yum:
169>
170> Shortcuts (emoticons): :-) :-( 8-) ;)
171
172see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
173
174
175### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
176
177- 19^th^
178- H~2~O
179
180
181### [\<ins>](https://github.com/markdown-it/markdown-it-ins)
182
183++Inserted text++
184
185
186### [\<mark>](https://github.com/markdown-it/markdown-it-mark)
187
188==Marked text==
189
190
191### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)
192
193Footnote 1 link[^first].
194
195Footnote 2 link[^second].
196
197Inline footnote^[Text of inline footnote] definition.
198
199Duplicated footnote reference[^second].
200
201[^first]: Footnote **can have markup**
202
203 and multiple paragraphs.
204
205[^second]: Footnote text.
206
207
208### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)
209
210Term 1
211
212: Definition 1
213with lazy continuation.
214
215Term 2 with *inline markup*
216
217: Definition 2
218
219 { some code, part of Definition 2 }
220
221 Third paragraph of definition 2.
222
223_Compact style:_
224
225Term 1
226 ~ Definition 1
227
228Term 2
229 ~ Definition 2a
230 ~ Definition 2b
231
232
233### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
234
235This is HTML abbreviation example.
236
237It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
238
239*[HTML]: Hyper Text Markup Language
240
241### [Custom containers](https://github.com/markdown-it/markdown-it-container)
242
243::: warning
244*here be dragons*
245:::
246