| Author | John Doe |
|---|---|
| Category | Non-fiction |
| Rating | 5 |
+- (c) (C) (r) (R) (tm) (TM)
+- (c) (C) (r) (R) (tm) (TM)
!!!!!! ???? ,, -- ---
!!!!!! ???? ,, -- ---
example.. example... example..... example?..... example!....
example.. example... example..... example?..... example!....
"Smartypants, double quotes" and 'single quotes'
"Smartypants, double quotes" and 'single quotes'
This is italic text
This is bold text
Strikethrough
This is italic and bold text
Blockquotes can also be nested...
...by using additional greater-than signs right next to each other...
...or with spaces between arrows.
Unordered
- Create a list by starting a line with
+,-, or* - Sub-lists are made by indenting 2 spaces:
- Marker character change forces new list start:
- Ac tristique libero volutpat at
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Marker character change forces new list start:
- Very easy!
Ordered
-
Lorem ipsum dolor sit amet
-
Consectetur adipiscing elit
-
Integer molestie lorem at massa
-
You can use sequential numbers...
-
...or keep all the numbers as
1.
Start numbering with offset:
- foo
- bar
Inline code
Indented code
// Some comments with indented code
line 1 of code
line 2 of code
line 3 of code
Syntax highlighting
function factorial(n: number): number {
if (n === 0) {
return 1
}
return n * factorial(n - 1)
}
const num: number = 5
console.log(`The factorial of ${num} is ${factorial(num)}`)def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
num = 5
print(f"The factorial of {num} is {factorial(num)}")| Option | Description |
|---|---|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
Right aligned columns
| Option | Description |
|---|---|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
---
___
***
Autoconverted link https://github.com/nodeca/pica (Auto linkify)
Image with title:
Like links, Images also have a footnote style syntax ![Alt text][id]:
With a reference later in the document defining the URL location:
[id]: https://octodex.github.com/images/nyantocat.gif "Nyantocat"
Very effective syntax plugins from markdown-it:
Classic markup:
:wink: :cry: :laughing: :yum: :100: :dog: :cat:
😉 😢 😆 😋 💯 🐶 🐱
Shortcuts (emoticons):
:-) :-( 8-) ;)
:-) :-( 8-) ;)
- 19^th^
- H
2O
- Todo 1
- Todo 2
| Symbol | Case (Lower/Upper) | Symbol | Case (Lower/Upper) |
|---|---|---|---|
| α |
|
ν |
|
| β |
|
ξ |
|
| γ |
|
π |
|
| δ |
|
ρ |
|
| ε |
|
σ |
|
| ζ |
|
τ |
|
| η |
|
υ |
|
| θ |
|
φ |
|
| ι |
|
χ |
|
| κ |
|
ψ |
|
| λ |
|
ω |
|
| μ |
|
sequenceDiagram
participant Alice
participant Bob
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
gantt
title My Product Roadmap
dateFormat YYYY-MM-DD
section Cool Feature
A task :a1, 2022-02-25, 30d
Another task :after a1, 20d
section Rad Feature
Task in sequence :2022-03-04, 12d
Task, No. 2 :24d
++Inserted text++
++Inserted text++
==Marked text==
==Marked text==
This is HTML abbreviation example.
It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
*[HTML]: Hyper Text Markup Language
*[HTML]: Hyper Text Markup Language
Term 1
: Definition 1 with lazy continuation.
Term 2 with inline markup
: Definition 2
{ some code, part of Definition 2 }
Third paragraph of definition 2.
Compact style:
Term 1 ~ Definition 1
Term 2 ~ Definition 2a ~ Definition 2b
Footnote 1 link1.
Footnote 2 link2.
Inline footnote^[Text of inline footnote] definition.
Duplicated footnote reference2.
::: info Stay hungry, stay foolish. :::
::: tip In the middle of difficulty lies opportunity. :::
::: success 千里之行,始于足下。 :::
::: warning Fortune favors the bold. :::
::: danger Hic sunt dracones! :::
Note
Useful information that users should know, even when skimming content.
Tip
Helpful advice for doing things better or more easily.
Important
Key information users need to know to achieve their goal.
Warning
Urgent info that needs immediate user attention to avoid problems.
Caution
Advises about risks or negative outcomes of certain actions.


