1 %title: mdp - Sample Presentation
2 %author: Michael Göhler
8 A command-line based markdown presentation tool.
10 -------------------------------------------------
12 # Supported markdown formatting's
14 The input file is split into multiple slides by
15 horizontal rules (hr). A hr consisting of at
16 least 3 *\** or *-*. It can also contain spaces but
19 Each of these represents the start of a new slide
23 \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
26 -------------------------------------------------
28 # Supported markdown formatting's
30 First-level headers can be prefixed by single *#*
31 or underlined by *===*.
39 -------------------------------------------------
41 # Supported markdown formatting's
43 Second-level headers can be prefixed by *##* or
55 -------------------------------------------------
57 # Supported markdown formatting's
59 Code blocks are automatically detected by 4
60 spaces at the beginning of a line.
62 Tabs are automatically expanded to 4 spaces
63 while parsing the input.
65 \ int main(int argc, char \*argv[]) {
66 \ printf("%s\\n", "Hello world!");
71 int main(int argc, char *argv[]) {
72 printf("%s\n", "Hello world!");
75 -------------------------------------------------
77 # Supported markdown formatting's
79 Quotes are auto-detected by preceding *>*.
81 Multiple *>* are interpreted as nested quotes.
93 -------------------------------------------------
95 # Supported markdown formatting's
97 Inline highlighting is supported as followed:
99 - *\** colors text as red
100 - *\_* underlines text
102 \_some\_ \*highlighted\* \_\*text\*\_
106 _some_ *highlighted* _*text*_
108 -------------------------------------------------
110 # Supported markdown formatting's
112 Backslashes force special markdown characters
113 like *\**, *\_*, *#* and *>* to be printed as normal
122 -------------------------------------------------
124 ## More information about markdown
128 _http://daringfireball.net/projects/markdown/_
130 -------------------------------------------------
132 # Support for UTF-8 special characters
134 Here are some examples.
136 ae = ä, oe = ö, ue = ü, ss = ß
144 -------------------------------------------------
146 # Suspend your presentation for hands-on examples
148 Use *Ctrl + z* to suspend the presentation.
150 Use *fg* to resume it.
152 -------------------------------------------------
156 I hope you like *mdp*. But be aware, that it is
157 still in alpha status.
159 If you observe strange behavior, feel free to
160 open an issue on GitHub:
162 _https://github.com/visit1985/mdp_