Tweaked Boostnote samples in markdown.
Open the current version from the Boostnote Markdown Cheatsheet Repo
Italic type
Bold
Negative
Green Text
Yellow Text
--> <-- <-->
[[Esc]] [[z]]
- List 1
- List 2
- First ordered list item Second line
- Another item
- Task 1
- Task 2
Quotation Quotation Quotation


Render: function () {
Return (
<Div className = “commentBox”>
<H1> Comments </ h1>
<CommentList data = {this.state.data} />
<CommentForm onCommentSubmit = {this.handleCommentSubmit} />
</Div>
);
}
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
Markdown | Less | Pretty |
---|---|---|
Still | renders |
nicely |
1 | 2 | 3 |
Boostnote is a notepad corresponding to markdown notation, which is a tool for organizing and sharing information.
- Features -· Search function to find memos in one shot · Supports markdown notation
· Support for Mac, Windows, Linux, iOS, Android
· Export and import to Plain text (.txt), Markdown (.md) format
· Supports PDF saving
· Can be used offline
· Synchronize to dropbox etc. with setting
* Supports theme colors and numerous fonts
Here is a footnote reference,1 and another.2
Horizontal lines have various ways of writing.
!!! note Note Lorem ipsum !!!
!!! hint Hint Lorem ipsum !!!
!!! caution Caution Lorem ipsum !!!
!!! error Error Lorem ipsum !!!
!!! attention Attention Lorem ipsum !!!
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes or No?:>http://www.google.com
io=>inputoutput: catch something…
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
Title: Here is a title
A-> B: Normal line
B --> C: Dashed line
C ->> D: Open arrow
D -->> A: Dashed open arrow
For sequence you should have:
Sequence
This will give the actual dashed lines and open arrows.