Markdown examples:
\
####
h4###\#
h4 but with a backtick___ --- or ***
"Smartypants, double quotes" and 'single quotes'
**This is bold text**
__This is bold text__
*This is italic text*
_This is italic text_
~~No Strikethrough~~
Unordered
+
, -
, or *
Ordered
1.
2.
3.
1.
for an automatic incrementationsInline code
uses `backticks`
Indented code has 4 spaces
at the start of every line:
// Some comments
line 1 of code
line 2 of code
line 3 of code
Block code fences starts and ends with 3 back ticks ```
Sample code here...
over many
lines !
Tables start with a header, directions and the rest of the coloumns:
| Header1 | Header 2 | Header 3 |
|---------------|-----------------:|:--------------:| (left center and right alligned)
| 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. |
Header1 | Header 2 | Header 3 |
---|---|---|
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. |
[link text with optional title](https://mkrabs.de "title text!") 👉 link text with optional title
Link won't get autoconverted!
Autoconverted link https://mkrabs.de
![Stormtroopocat](/media/profile_pictures/anonymous.jpg "The Stormtroopocat")
![Stormtroopocat](http://mkrabs.de/media/profile_pictures/anonymous.jpg "The Stormtroopocat")
The following html tags are allowed:
<img>
attributes=['class', 'href', 'src', 'style', 'width', 'height']
<script type = "text/javascript">
alert ("This is an alert dialog box");
</script>
<body onload="alert ("This is an alert dialog box")">