stefytasnadi

Markdown

Jul 16th, 2018 (edited)
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. # How use Boostnote:
  2. - - -
  3. ## 1. Headings
  4.  
  5. - # H1
  6. - ## H2
  7. - ### H3
  8.  
  9. ## 2. Emphasis
  10.  
  11. - *Italic type*
  12. - **Bold**
  13. - ~~Negative~~
  14.  
  15. ## 3. Fold (for long sentences):
  16.  
  17. <details><summary>Boostnote is a notepad corresponding to markdown notation, which is a tool for organizing and sharing information.</summary>
  18. - Features - <br>
  19. · Search function to find memos in one shot
  20. · Supports markdown notation <br>
  21. · Support for Mac, Windows, Linux, iOS, Android <br>
  22. · Export and import to Plain text (.txt), Markdown (.md) format <br>
  23. · Supports PDF saving <br>
  24. · Can be used offline <br>
  25. · Synchronize to dropbox etc. with setting <br>
  26. · Supports theme colors and numerous fonts <br>
  27. </details>
  28.  
  29. ## 4. List
  30.  
  31. - List 1
  32. - List 2
  33. * List 3
  34.  
  35. ## 5. Link
  36.  
  37. [Boostnote](https://boostnote.io)
  38.  
  39. ## 6. Check box
  40.  
  41. - [ ] Task 1
  42. - [ ] Task 2
  43.  
  44. ## 7. Quotation
  45.  
  46. > Quotation
  47. > Quotation Quotation
  48.  
  49. ## 8. Horizontal line
  50.  
  51. * * *
  52. ***
  53. ---
  54.  
  55. ## 9. Image
  56.  
  57. ![Image title](https://boostnote.io/assets/img/logo.png)
  58.  
  59. ## 10. Source code
  60.  
  61. ```js
  62. Render: function () {
  63. Return (
  64. <Div className = “commentBox”>
  65. <H1> Comments </ h1>
  66. <CommentList data = {this.state.data} />
  67. <CommentForm onCommentSubmit = {this.handleCommentSubmit} />
  68. </Div>
  69. );
  70. }
  71. ```
  72.  
  73. ## 11. Table
  74.  
  75. | Fruits | Price | Weight |
  76. |:--|:--|:--|
  77. | Apple | 1$ | 1KG
  78. | Grapes | 4$ |
  79. | Orange | 2$ |
  80. | Lemon | 1$ |
  81. | Peach | 3$ |
  82. | Melon | 20$ |
  83.  
  84. ## 12. Latex
  85.  
  86. $$$
  87. \mathrm{e}^{\mathrm{i}\theta} = \cos(\theta) + \mathrm{i}\sin(\theta)
  88. $$$
  89.  
  90. ## 13. Flowchart
  91.  
  92. ```flowchart
  93. st=>start: Start:>http://www.google.com[blank]
  94. e=>end:>http://www.google.com
  95. op1=>operation: My Operation
  96. sub1=>subroutine: My Subroutine
  97. cond=>condition: Yes or No?:>http://www.google.com
  98. io=>inputoutput: catch something…
  99. st->op1->cond
  100. cond(yes)->io->e
  101. cond(no)->sub1(right)->op1
  102. ```
  103.  
  104. ## 14. Sequence
  105.  
  106. ```sequence
  107. Title: Here is a title
  108. A-> B: Normal line
  109. B -> C: Dashed line
  110. C -> D: Open arrow
  111. D -> A: Dashed open arrow
  112. ```
Add Comment
Please, Sign In to add comment