cabin

Source code for personal website
git clone git://git.dimitrijedobrota.com/cabin.git
Log | Files | Refs | README | LICENSE

TEST.md (4409B)


0 @title: Test
1 @date: 2021-08-16
2 @language: en
3 @categories: general
5 # h1 Heading 8-)
6 ## h2 Heading
7 ### h3 Heading
8 #### h4 Heading
9 ##### h5 Heading
10 ###### h6 Heading
13 ## Horizontal Rules
15 ___
17 ---
19 ***
22 ## Typographic replacements
24 Enable typographer option to see result.
26 (c) (C) (r) (R) (tm) (TM) (p) (P) +-
28 test.. test... test..... test?..... test!....
30 !!!!!! ???? ,, -- ---
32 "Smartypants, double quotes" and 'single quotes'
35 ## Emphasis
37 **This is bold text**
39 __This is bold text__
41 *This is italic text*
43 _This is italic text_
45 ~~Strikethrough~~
48 ## Blockquotes
51 > Blockquotes can also be nested...
52 >> ...by using additional greater-than signs right next to each other...
53 > > > ...or with spaces between arrows.
56 ## Lists
58 Unordered
60 + Create a list by starting a line with `+`, `-`, or `*`
61 + Sub-lists are made by indenting 2 spaces:
62 - Marker character change forces new list start:
63 * Ac tristique libero volutpat at
64 + Facilisis in pretium nisl aliquet
65 - Nulla volutpat aliquam velit
66 + Very easy!
68 Ordered
70 1. Lorem ipsum dolor sit amet
71 2. Consectetur adipiscing elit
72 3. Integer molestie lorem at massa
75 1. You can use sequential numbers...
76 1. ...or keep all the numbers as `1.`
78 Start numbering with offset:
80 57. foo
81 1. bar
84 ## Code
86 Inline `code`
88 Indented code
90 // Some comments
91 line 1 of code
92 line 2 of code
93 line 3 of code
96 Block code "fences"
98 ```
99 Sample text here...
100 ```
102 Syntax highlighting
104 ``` js
105 var foo = function (bar) {
106 return bar++;
107 };
109 console.log(foo(5));
110 ```
112 ## Tables
114 | Option | Description |
115 | ------ | ----------- |
116 | data | path to data files to supply the data that will be passed into templates. |
117 | engine | engine to be used for processing templates. Handlebars is the default. |
118 | ext | extension to be used for dest files. |
120 Right aligned columns
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. |
129 ## Links
131 [link text](http://dev.nodeca.com)
133 [link with title](http://nodeca.github.io/pica/demo/ "title text!")
135 Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
138 ## Images
140 ![Minion](https://octodex.github.com/images/minion.png)
141 ![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
143 Like links, Images also have a footnote style syntax
145 ![Alt text][id]
147 With a reference later in the document defining the URL location:
149 [id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
152 ## Plugins
154 The killer feature of `markdown-it` is very effective support of
155 [syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
158 ### [Emojies](https://github.com/markdown-it/markdown-it-emoji)
160 > Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum:
162 > Shortcuts (emoticons): :-) :-( 8-) ;)
164 see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
167 ### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
169 - 19^th^
170 - H~2~O
173 ### [\<ins>](https://github.com/markdown-it/markdown-it-ins)
175 ++Inserted text++
178 ### [\<mark>](https://github.com/markdown-it/markdown-it-mark)
180 ==Marked text==
183 ### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)
185 Footnote 1 link[^first].
187 Footnote 2 link[^second].
189 Inline footnote^[Text of inline footnote] definition.
191 Duplicated footnote reference[^second].
193 [^first]: Footnote **can have markup**
195 and multiple paragraphs.
197 [^second]: Footnote text.
200 ### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)
202 Term 1
204 : Definition 1
205 with lazy continuation.
207 Term 2 with *inline markup*
209 : Definition 2
211 { some code, part of Definition 2 }
213 Third paragraph of definition 2.
215 _Compact style:_
217 Term 1
218 ~ Definition 1
220 Term 2
221 ~ Definition 2a
222 ~ Definition 2b
225 ### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
227 This is HTML abbreviation example.
229 It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
231 *[HTML]: Hyper Text Markup Language
233 ### [Custom containers](https://github.com/markdown-it/markdown-it-container)
235 ::: warning
236 *here be dragons*
237 :::