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 First-level headers can be prefixed by single *#*
15 or underlined by *===*.
23 -------------------------------------------------
25 # Supported markdown formatting's
27 Second-level headers can be prefixed by *##* or
39 -------------------------------------------------
41 # Supported markdown formatting's
43 Code blocks are automatically detected by 4
44 spaces at the beginning of a line.
46 Tabs are automatically expanded to 4 spaces
47 while parsing the input.
49 \ int main(int argc, char \*argv[]) {
50 \ printf("%s\\n", "Hello world!");
55 int main(int argc, char *argv[]) {
56 printf("%s\n", "Hello world!");
59 -------------------------------------------------
61 # Supported markdown formatting's
63 Quotes are auto-detected by preceding *>*.
65 Multiple *>* are interpreted as nested quotes.
77 -------------------------------------------------
79 # Supported markdown formatting's
81 Inline highlighting is supported as followed:
83 - *\** colors text as red
84 - *\_* underlines text
86 \_some\_ \*highlighted\* \_\*text\*\_
90 _some_ *highlighted* _*text*_
92 -------------------------------------------------
94 # Supported markdown formatting's
96 Backslashes force special markdown characters
97 like *\**, *\_*, *#* and *>* to be printed as normal
106 -------------------------------------------------
108 ## More information about markdown
112 _http://daringfireball.net/projects/markdown/_
114 -------------------------------------------------
116 # Support for UTF-8 special characters
118 Here are some examples.
120 ae = ä, oe = ö, ue = ü, ss = ß
128 -------------------------------------------------
130 # Suspend your presentation for hands-on examples
132 Use *Ctrl + z* to suspend the presentation.
134 Use *fg* to resume it.
136 -------------------------------------------------
140 I hope you like *mdp*. But be aware, that it is
141 still in alpha status.
143 If you observe strange behavior, feel free to
144 open an issue on GitHub:
146 _https://github.com/visit1985/mdp_