Improve follow features to support 64-bit OneNote
- Flow Chart
- Image LaTeX Equation
[2018-02-05] Release One Markdown 2.2.0.11
Headings Style
Provide: Normal heading style, Gem heading style, OneNote heading style.
[2017-05-26] Release One Markdown 2.0.0.9
Quote Text
Indent quote text with ">", ">>", ">>>" ...
Checkbox
[ ] Checkbox
[x] Checked box
Backslash Escapes
Backslash escapes for the following characters:
\ backslash
` backtick
* asterisk
_ underscore
{} curly braces
[] square brackets
() parentheses
# hash mark
+ plus sign
- minus sign (hyphen)
. dot
! exclamation mark
Table
Split columns by broken vertical bar |. The second row is division row.
--- or :--- is align left
:--: is align center
--: is align right
| Header 1 | Header 2 | Header 3 |
| ------------ | :----------: | ------------: |
| Cell 1 | Cell 2 | Cell 3 |
Header 1 | Header 2 | Header 3
------------ | :----------: | ------------:
Cell 1 | Cell 2 | Cell 3
Table of Contents
[TOC]
Heading Reference Links (Link inside page)
[Click here jump to First Heading][#First Heading]
### First Heading
MathML Equation
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mi>x</mi> <mo>=</mo>
<mrow>
<mfrac>
<mrow>
<mo>−</mo>
<mi>b</mi>
<mo>±</mo>
<msqrt>
<msup><mi>b</mi><mn>2</mn></msup>
<mo>−</mo>
<mn>4</mn><mi>a</mi><mi>c</mi>
</msqrt>
</mrow>
<mrow> <mn>2</mn><mi>a</mi> </mrow>
</mfrac>
</mrow>
<mtext>.</mtext>
</math>
Image LaTeX Equation
)
Flow Chart
```flow
st=>start: Start
e=>end: End
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes or No?
io=>inputoutput: catch someting...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
```
Computer Language Syntax Highlight
```c
#include<stdio.h>
void main()
{
printf("Hello world!");
}
```