Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Document Title?
===
# Testing markdown features supported by Qt
To show this file in help, change extension to ".help.md"
[Links to other documents?](01 _ Table of Contents.md)
1. Numbered List
1. Sublist
2. Another Entry
1. Another Sublist
* Bulleted list
* Sublist
* Another Sublist
# Section
## Subsection
### Sub-subsection
#### Subsections all the way down
*Emphasis*
**Bold**
***Bold-Emphasis***
~strikethrough?~
> This is a quote
```
printf("%s\n", codeFences.doTheyWork ? "Success!" : "Oof.");
```
```c
printf("%s\n", syntaxHighlighting.doesItWork ? "Success!" : "Oof.");
```
---
^ This is a horizontal line
v This is an image
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
Another horizontal line
Is there a footnote? [^1]
[^1]: Maybe.
Definition Lists
: Do they work?
Task Lists?
- [ ] Yes
- [ ] No
- [x] Maybe
==Highlighting==? Nope.
Subscripts? x~0 Nope.
Superscripts? ax^2 + bx + c = 0. Also Nope.
Html?
x<sub>0</sub> Yup.
x<sup>2</sup> Yup.
Tables?
~Not supported.~
Just kidding, they totally are, and I just didn't do it right.
| Is this | a table? |
| ------- | ------------ |
| Perhaps | Perhaps not. |