Hi, I'm Markdown support
Marc Posted 1 year, 10 months ago

Markdown examples:

# h1 Heading

## h2 Heading

### h3 Heading

#### h4 Heading

##### h5 Heading
###### h6 Heading (max)

Escape characters with backslash \

#### h4

###\# h4 but with a backtick


Horizontal Rules

___ --- or ***


"Smartypants, double quotes" and 'single quotes'

Emphasis

**This is bold text**

__This is bold text__

*This is italic text*

_This is italic text_

~~No Strikethrough~~


Lists

Unordered

Ordered

  1. Create a list by starting a line with 1. 2. 3.
  2. Or keep all the numbers as 1. for an automatic incrementations
  3. Sub-lists are made by indenting 2 spaces:
    1. Ac tristique libero volutpat at
    2. Very easy!

Code

Inline 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

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.

Links

[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


Images

![Stormtroopocat](/media/profile_pictures/anonymous.jpg "The Stormtroopocat")
![Stormtroopocat](http://mkrabs.de/media/profile_pictures/anonymous.jpg "The Stormtroopocat")
Stormtroopocat


HTML

The following html tags are allowed:

<img>
attributes=['class', 'href', 'src', 'style', 'width', 'height']
Comments (and Posts) support Markdown to style them! Guide or
*italic*
**bold**
[text](url)
List - or 1. with two spaces per indentations
Horizontal line --- *** ___
```multiline code```
| Header1 | Header 2 | Header 3 |
|-----|------:|:------:|
| left | right | centered |

Image: ![name](url "title")

lphabet

This article should be called "Marcdown"

Commented 4 months, 2 weeks ago
Marc

Comment nr2:

  • test
  • something else

link

<script type = "text/javascript">

alert ("This is an alert dialog box");

</script>

<body onload="alert ("This is an alert dialog box")">

Commented 1 year, 10 months ago
Marc

Write your own comment with markdown !

Commented 1 year, 10 months ago