Search
OneNoteGem
  • Home
  • Addins
    • Windows Office Addins >
      • Gem for OneNote
      • OneNote Search Bar
      • OneNote Gem - Favorites
      • OneNote Batch
      • Pons for MindManager and OneNote
      • Mind Map for OneNote
      • Pons for Visio and OneNote
      • Row to OneNote
      • Auto OneNote
      • Favorite to OneNote
      • Bridge for EndNote and OneNote
      • Anchor to OneNote
      • Anchor to OneNote for PDF
      • Bring to OneNote
      • Gem Table for OneNote
    • Windows UWP Addins >
      • Gem Menu for OneNote UWP
      • CiteBoard for OneNote
      • OneReader
      • OneMind for Windows OneNote
      • OneNote Reminder Cloud (UWP)
      • OneNote Batch Cloud (UWP)
    • Mac Addins >
      • Gem Menu for Mac OneNote
      • CiteBoard for OneNote
      • Bring to Mac OneNote
      • OneMind for Mac OneNote
      • OneNote Reminder for Mac
      • OneNote Batch for Mac
      • Fix One for Mac - Fix OneNote Login, Sync Tools
    • Android Addins >
      • CiteBoard for OneNote
      • Fix One for Android - Fix OneNote Login, Sync Tools
    • Cross-Platform Addins >
      • OneNote Reminder
      • OneMind for OneNote
      • CiteBoard for OneNote
      • Fix One - Fix OneNote Login, Sync Tools
    • Markdown Addins >
      • Gem for OneNote
      • One Markdown
    • Mind Map Addins >
      • OneNote Gem - Favorites
      • Pons for MindManager and OneNote
      • Mind Map for OneNote
      • Pons for Visio and OneNote
      • OneMind for OneNote
    • Other Addins >
      • One Markdown
      • Clip to OneNote
      • WordNote
      • OneShare
      • Fix One for Windows - Fix OneNote Login, Sync Tools
  • Buy
  • Documents
  • FAQs
  • Templates
  • Support
  • Release
  • WordNote
Gem Table for OneNote
 
 
The table of merged cells for OneNote

Markdown for OneNote 2.0

2019-11-26 08:10
 
This document is used for (1) "One Markdown" suite for OneNote or (2) "Gem for OneNote"  Markdown feature in Gem tab.
(1) One Markdown
"One Markdown Suite for OneNote" connect directly to Windows Desktop OneNote and sync notes through LAN. It don't need OneDrive to sync notes among PC, Android, IPhone.
One Markdown
 
One Markdown for OneNote ( OneNote Inside Editor )
One Markdown (Inside) is in Gem for OneNote, after installed Gem for OneNote, you can find it in OneNote "Review" tab.
This editor help you edit the One Markdown notes inside OneNote.
One Mardown inside OneNote
 
Attention:
One Markdown Server and One Markdown for OneNote (Insider)
Some features can only be displayed correctly under OneNote 32 Bit. Therefore, it is recommended to install OneNote 32 Bit.

 
(2) Markdown in Gem for OneNote

Another markdown tool in "Gem" tab. Use OneNote as markdown editor.

  1. Write the Markdown text in OneNote page.
  2. Click "Markdown" button to convert Markdown text to OneNote normal text.
  3. Click "Markdown" button again, convert the text back to Markdown text.
Markdown for OneNote
 
 

 

Standard Markdown


Block Elements

Headers


Markdown supports two styles of headers, Setext and atx.

Setext-style headers are “underlined” using equal signs (for first-level headers) and dashes (for second-level headers).

Atx-style headers use 1-6 hash characters at the start of the line, corresponding to header levels 1-6.
Markdown Headers
Markdown Headers
Lists

Markdown supports ordered (numbered) and unordered (bulleted) lists.

Unordered lists use asterisks, pluses, and hyphens – interchangably – as list markers.

Ordered lists use numbers followed by periods.
Markdown Lists
Markdown Lists
Code Blocks

Pre-formatted ``` or ~~~ code blocks are used for writing about programming or markup source code.
 
Markdown Code Blocks
Markdown Code Blocks
Horizontal Rules

Asterisks, or underscores on a line by themselves. If you wish, you may use spaces between the hyphens or asterisks. Each of the following lines will produce a horizontal rule.
Markdown Horizontal Rules
 
Span Elements

Links

Markdown supports two style of links: inline and reference.

In both styles, the link text is delimited by [square brackets].
Markdown Links
 
Emphasis

Markdown treats asterisks (*) and underscores (_) as indicators of emphasis. Text wrapped with one * or _ will be converted to italic text; double *’s or _’s will be converted to bold text.
Markdown Emphasis
 
Code

To indicate a span of code, wrap it with backtick quotes (`). Unlike a pre-formatted code block, a code span indicates code within a normal paragraph.
Markdown Code Block
 
Images

Markdown uses an image syntax that is intended to resemble the syntax for links, allowing for two styles: inline and reference.
Markdown Images
 
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
 

 

Extend Elements

Quote Text

?Indent quote text with ">", ">>", ">>>" ...
Markdown Quote Text
 
Check Box (Detail)
  • [ ] Check Box
  • [x] Checked Box
Markdown Check Box
 
 

 

One Markdown Extension

Table of Contents (Detail)

Table of Contents for Headings

[TOC]
Markdown Table of Contents
 
Reference Link for Heading - Jump Inside Page (Detail)

Using reference link for heading to jump inside page.

Format: [Text][#Heading Text]
OneNote Markdown Reference Link for Heading - Jump Inside Page
 
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 | Header 4 | Header 5 |
| -----------  | :----------- | :----------: | -----------: | ------------ |
| Cell 1 | Cell 2 |  Cell 3 | Cell 4 | Cell 5 |
| Cell 1 | Cell 2 |  Cell 3 | Cell 4 | Cell 5 |
| Cell 1 | Cell 2 |  Cell 3 | Cell 4 | Cell 5 |
table.md

Markdown Table
 
Programming Language Syntax Highlight (Detail)

Programming language name: bash, c, cpp, csharp, css, pas, java, js, perl, pl, php
?```c
    
    #include<stdio.h>
    
    void main()
    {
      printf("Hello world!");
    }
    
    ```
code.md

Computer Language Syntax Highlight
 
Flow Chart (Detail) - Need OneNote 32 Bit

 
# Flow Chart 1

?```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
    
    ```
# Flow Chart 2
?
?```flow
st=>start: Start|past:>http://www.google.com[blank]
e=>end: End:>http://www.google.com
op1=>operation: My Operation|past
op2=>operation: Stuff|current
sub1=>subroutine: My Subroutine|invalid
cond=>condition: Yes
or No?|approved:>http://www.google.com
c2=>condition: Good idea|rejected
io=>inputoutput: catch something...|request

st->op1(right)->cond
cond(yes, right)->c2
cond(no)->sub1(left)->op1
c2(yes)->io->e
c2(no)->op2->est=>start: Start|past:>http://www.google.com[blank]
e=>end: End:>http://www.google.com
op1=>operation: My Operation|past
op2=>operation: Stuff|current
sub1=>subroutine: My Subroutine|invalid
cond=>condition: Yes
or No?|approved:>http://www.google.com
c2=>condition: Good idea|rejected
io=>inputoutput: catch something...|request

st->op1(right)->cond
cond(yes, right)->c2
cond(no)->sub1(left)->op1
c2(yes)->io->e
c2(no)->op2->e
```
Markdown Flow Chart
 
flowchar.md

MathML Equation (Detail)

Enclose MathML XML with tag <math> and </math>
?<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
  <mi>x</mi> <mo>=</mo>
  <mrow>
    <mfrac>
      <mrow>
        <mo>&#x2212;</mo>
        <mi>b</mi>
        <mo>&#x00B1;</mo>
        <msqrt>
          <msup><mi>b</mi><mn>2</mn></msup>
          <mo>&#x2212;</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>
mathml.md

One Markdown MathML Equation
 
 Image LaTeX Equation - Need OneNote 32 Bit
# Image Equation
    
![Image Eqution](http://latex.codecogs.com/png.latex?1+sin(x))
    
    
![pi](http://latex.codecogs.com/png.latex?\frac{1}{\pi}=\frac{2\sqrt{2}}{9801}\sum_{k=0}^\infty\frac{(4k)!(1103%2B26390k)}{(k!)^4396^{4k}})
    
![Equation](http://latex.codecogs.com/png.latex?\frac{P_{pd}}{P}=\frac{2\int_{L-R}^{L+R}\int_{-R}^{R}I_{0}\left(\frac{w_{0}}{w_{z}}\right)^{2}e^{\frac{-2r^{2}}{w_{z}^{2}}}dxdy}{\int_{0}^{2\pi}\int_{0}^{\infty}I_{0}\left(\frac{w_{0}}{w_{z}}\right)^{2}e^{\frac{-2r^{2}}{w_{z}^{2}}}rdrd\theta}=\frac{\int_{L-R}^{L+R}\int_{-R}^{R}e^{\frac{-2\left(x^{2}+y^{2}\right)}{w_{z}^{2}}}dxdy}{\pi\int_{0}^{\infty}e^{\frac{-2r^{2}}{w_{z}^{2}}}rdr})
        
![Equation](http://latex.codecogs.com/png.latex?w_{z}^{2}=w_{0}^{2}\left(1+\left(\frac{z}{z_{0}}\right)^{2}\right)=w_{0}^{2}\left(1+\left(\frac{z}{\frac{\pi w_{0}^{2}}{\lambda}}\right)^{2}\right)=w_{0}^{2}\left(1+\left(\frac{z\lambda}{\pi w_{0}^{2}}\right)^{2}\right))
OneNote Markdown Image LaTeX Equation
 
latex.md

 
 
Download Gem for OneNote

Related Documents

  • EXE: How to Set Shortcuts for Custom Text Styles in OneNote?
Command Line
Tag System
MindMap Add-Ins Comparison
Search Add-Ins Comparison
One Markdown Syntax
Table Formula
Gantt

Gem Menu Templates
Repair OneNote
OneNote Download
English website Chinese website
Mobile Site
Copyright © 2011-2025 Digital GemSoft. OneNoteGem.com All Rights Reserved.