JotterPad 12 supports Github Flavored markdown. The markdown syntaxes are as follow:
Headings
# Heading1
## Heading2
### Heading3
Emphasis and Importance
*example*
**example**
Bullet List
Type *, + or – then space to create bullet list. Example:
* Bullet item list * Bullet item list * Bullet item list
●Bullet item list ●Bullet item list ●Bullet item list
To make a nested list, indent with two spaces from its parent list.
* Bullet item list * Nested item * Bullet item list
●Bullet item list ●Nested item ●Bullet item list
Ordered List
Type a number then a period or ), followed by a space to create an ordered list. Example:
1. Ordered item list 2. Ordered item list 3. Ordered item list
- Ordered Item list
- Ordered Item list
- Ordered Item list
Block Quotes
Put a > and then a space
> A quoted paragraph >> A quoted paragraph inside a quotation
Links
Create a link by surrounding the link text in square brackets, followed immediately by the URL in parentheses. Example:
[Link Text](http://2appstudio.com)
Image
Add an image via the following syntax. Example:

Separating Paragraphs
End a line with two or more spaces, then type return.
Horizontal Rule
Add a thematic break by adding 3 or more *, _ or – . Example:
***
_________
-------------
Page Break
There is no Markdown syntax for Page break. However, you can use the HTML equivalent. This syntax will only take effect during the printing of document.
<div style="page-break-after:always"></div>
Task Lists
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported - [x] list syntax required (any unordered or ordered list supported) - [x] this is a complete item - [ ] this is an incomplete item
Tables
First Header | Second Header ------------ | ------------- Content from cell 1 | Content from cell 2 Content in the first column | Content in the second column
Would become:
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |