The underline
<u> </u>Copy the code
Add to-do items
Example syntax:
Three Frogs * [x] First frog * [] Second frog * [] Third frogCopy the code
Insert table
Example syntax:
| | | free account account type standard account senior account | | | -- - | -- - | -- - | -- - | | | account flow 60 m 1 gb | | 10 gb | | equipment | number 2 unlimited unlimited | | | | | the current price Free | | | $12.33 / month is RMB 8.17 / monthCopy the code
Insert a chart
Currently, pie, line, bar, and bar charts are supported, just change type to the corresponding pie, line, column, and bar.
Budget, income, expenses, debt June,5000,8000,4000,6000 July,3000,1000,4000,3000 Aug,5000,7000,6000, 6000, 6000, 6000, 6000, 6000, 6000, 5000,7000,6000, 6000,3000 Sep,7000,2000,3000,1000 Oct,6000,5000,4000,2000 Nov,4000,3000,5000, type: pie title: monthly revenue x.tip: Amount y.tip: Month y.suffix: $Copy the code
Inserts inline code or code blocks
The Evernote Markdown syntax supports highlighting of dozens of programming languages. (Click here to see the syntax that has been highlighted.)
Example syntax:
#! /usr/bin/python
import re
line = "Cats are smarter than dogs"
matchObj = re.match( r'(.*) are (.*?) . * ', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(2)
else:
print "No match!!"
Copy the code
Insert mathematical formula
Evernote Markdown supports the vast majority of mathematical formulas for LaTeX
Example syntax:
e^{i\pi} + 1 = 0
Copy the code
More mathematical formula of input can be reference: khan. Making. IO/KaTeX/docs /…
Insertion flow chart
Example syntax:
Graph of TD A [A] module - > | | B A1 (module B) B - > {C} judgment conditions C - C > C1 | D | conditions [module D] C - > C2 | E | conditions [module E] C - > C3 | | conditions F [module F]
Insertion sequence diagram
Example syntax:
SequenceDiagram A->>B: Have you received the message? B-->>A: The message has been received
Insert the Gantt chart
Example syntax:
Gantt title dateFormat YYYY-MM-DD Section ITEM A Task 1: A1, 2018-06-06, 30d Section 20D task B :2018-06-12; 12D task 4:24d
Set the directory
After setting, you can automatically generate the directory according to the set hierarchical title.
Example syntax:
[TOC]
Copy the code
reference
Impression notes Markdown start guide list.yinxiang.com/markdown/ee…