OneNote Gem Add-Ins

[2021-10-16] Release One Markdown 4.1.0.15

[2021-10-16] Release One Markdown 4.1.0.15

Improve souce highlight to support OneNote 2021

[2019-07-01] Release One Markdown 3.0.0.15

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


x =




b
±

b2

4ac



2a



.



Image LaTeX Equation

![Image Eqution](http://latex.codecogs.com/png.latex?1+sin(x))

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

void main()
{
printf("Hello world!");
}

```