Skip to content

Instantly share code, notes, and snippets.

@TobseF
Last active December 10, 2020 08:31
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save TobseF/a23cab6964226e26310a047a3189c8b1 to your computer and use it in GitHub Desktop.
Save TobseF/a23cab6964226e26310a047a3189c8b1 to your computer and use it in GitHub Desktop.
Boostnote Markdown Example

Boost Note Markdown CheatSheet

Tweaked Boostnote samples in markdown.

⚠️ Outdated gist:

Open the current version from the Boostnote Markdown Cheatsheet Repo

Emphasis

Italic type Bold Negative Green Text Yellow Text

Emotiocons

📚 📝

complete emojy list

Arrows

--> <-- <-->

Keystrokes

[[Esc]] [[z]]

List

  • List 1
  • List 2
  1. First ordered list item Second line
  2. Another item

Link

Boostnote

Check box

  • Task 1
  • Task 2

Quotation

Quotation Quotation Quotation

Image

Title ![Resized](https://boostnote.io/assets/img/logo.png =50x) ![Streched](https://boostnote.io/assets/img/logo.png =50x20) Referneced Style

Source Code

Render: function () {
  Return (
    <Div className = “commentBox”>
      <H1> Comments </ h1>
      <CommentList data = {this.state.data} />
      <CommentForm onCommentSubmit = {this.handleCommentSubmit} />
    </Div>
  );
}

Table

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

Fold

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

Footnotes

Here is a footnote reference,1 and another.2

Horizontal line

Horizontal lines have various ways of writing.




Admonition

!!! note Note Lorem ipsum !!!

!!! hint Hint Lorem ipsum !!!

!!! caution Caution Lorem ipsum !!!

!!! error Error Lorem ipsum !!!

!!! attention Attention Lorem ipsum !!!

Latex

$$[x^n + y^n = z^n]$$ $$\frac{d}{dx}\left( \int_{0}^{x} f(u),du\right)=f(x).$$

Flowchart

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

Sequence

Title: Here is a title
A-> B: Normal line
B --> C: Dashed line
C ->> D: Open arrow
D -->> A: Dashed open arrow

Footnotes

  1. Here is the footnote.

  2. Here's one with multiple blocks.

    Subsequent paragraphs are indented to show that they belong to the previous footnote.

@dffuller
Copy link

dffuller commented Mar 6, 2018

For sequence you should have:

Sequence

Title: Here is a title
A-> B: Normal line
B --> C: Dashed line
C ->> D: Open arrow
D -->> A: Dashed open arrow

This will give the actual dashed lines and open arrows.

@TobseF
Copy link
Author

TobseF commented Jun 17, 2018

@dffuller Thank's for th hint. I updated the gist and also added the new admonitions.

@htrampe
Copy link

htrampe commented Jul 10, 2018

Hi! Does i need any addons or plugins to use the sequence? In my case nothing happen when i copy that snippet into my markdown-note...thx!

@TobseF
Copy link
Author

TobseF commented Nov 20, 2018

It works in Boostnote without any additional plugins.
I addes a repo with a preview and a newer version here: TobseF/boostnote-markdown-cheatsheet

@AlexIvamoto
Copy link

Hi! Does i need any addons or plugins to use the sequence? In my case nothing happen when i copy that snippet into my markdown-note...thx!

In browser version (Firefox) nothing happen too ...

@TobseF
Copy link
Author

TobseF commented Jan 27, 2020

Please use the current version from the repo:
https://github.com/TobseF/boostnote-markdown-cheatsheet

Then ensure you use a current Boostnote version.
The new rebuild Boostnote-Next may not support all features.

ℹ️ How to add it to Boostenote

  1. Open the RAW version of the cheat sheet.
  2. Copy it with crtl + a and crtl + c
  3. Create an empty Markdown Note in Bosstnote paste it with
    crtl + shift + v
    (The shift is important to skip escaping)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment