Advertisement
Guest User

kkkkk'kkkkkkkkkkkkkkkk

a guest
Jan 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. ์ •๋‹คThis is an example note.
  2. You can write notes in [GitHub-flavored Markdown](http://doc.inkdrop.info/manual/markdown-cheatsheet).
  3. ```sequence
  4. Alice->Bob: Hello Bob, how are you?
  5. Note right of Bob: Bob thinks
  6. Bob-->Alice: I am good thanks!
  7. ```
  8.  
  9.  
  10.  
  11. ```mermaid
  12. %% Example of sequence diagram
  13. sequenceDiagram
  14. Alice->>Bob: Hello Bob, how are you?
  15. alt is sick
  16. Bob->>Alice: Not so good :(
  17. else is well
  18. Bob->>Alice: Feeling fresh like a daisy
  19. end
  20. opt Extra response
  21. Bob->>Alice: Thanks for asking
  22. end
  23. ```
  24.  
  25. # H1
  26. ## H2
  27. ### H3
  28. #### H4
  29. ##### H5
  30. ###### H6
  31.  
  32. ## Emphasis
  33.  
  34. Emphasis, aka italics, with *asterisks* or _underscores_.
  35. ```
  36.  
  37. ```
  38. Strong emphasis, aka bold, with **asterisks** or __underscores__.
  39.  
  40. Combined emphasis with **asterisks and _underscores_**.
  41.  
  42. Strikethrough uses two tildes. ~~Scratch this.~~
  43.  
  44. ## Lists
  45.  
  46. 1. First ordered list item
  47. 2. Another item
  48. * Unordered sub-list.
  49. 1. Actual numbers don't matter, just that it's a number
  50. 1. Ordered sub-list
  51. 4. And another item.
  52.  
  53. You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
  54.  
  55. To have a line break without a paragraph, you will need to use two trailing spaces.
  56. Note that this line is separate, but within the same paragraph.
  57. (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
  58.  
  59.  
  60. * Unordered list can use asterisks
  61. >- Or minuses
  62. >> Or pluses
  63.  
  64. ## Links
  65.  
  66. [I'm an inline-style link](https://www.google.com)
  67.  
  68. [I'm an inline-style link with title](https://www.google.com "Google's Homepage")
  69.  
  70. [I'm a reference-style link][Arbitrary case-insensitive reference text]
  71.  
  72. [You can use numbers for reference-style link definitions][1]
  73.  
  74. Or leave it empty and use the [link text itself].
  75.  
  76. URLs and URLs in angle brackets will automatically get turned into links.
  77. http://www.example.com or <http://www.example.com> and sometimes
  78. example.com (but not on Github, for example).
  79.  
  80. Some text to show that the reference links can follow later.
  81.  
  82. [arbitrary case-insensitive reference text]: https://www.mozilla.org
  83. [1]: http://slashdot.org
  84. [link text itself]: http://www.reddit.com
  85.  
  86. ## Images
  87.  
  88. Here's our logo (hover to see the title text):
  89.  
  90. Inline-style:
  91. ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
  92.  
  93. Reference-style:
  94. ![alt text][logo]
  95.  
  96. [logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
  97.  
  98. ## Code and Syntax Highlighting
  99.  
  100. Inline `code` has `back-ticks around` it.
  101.  
  102. ```javascript
  103. var s = "JavaScript syntax highlighting";
  104. alert(s);
  105. ```
  106.  
  107. ```python
  108. s = "Python syntax highlighting"
  109. print s
  110. ```
  111.  
  112. ```
  113. No language indicated, so no syntax highlighting.
  114. ```
  115.  
  116. ## Tables
  117.  
  118. Colons can be used to align columns.
  119.  
  120. | Tables | Are | Cool |
  121. | ------------- |:-------------:| -----:|
  122. | col 3 is | right-aligned | $1600 |
  123. | col 2 is | centered | $12 |
  124. | zebra stripes | are neat | $1 |
  125.  
  126. There must be at least 3 dashes separating each header cell.
  127. The outer pipes (|) are optional, and you don't need to make the
  128. raw Markdown line up prettily. You can also use inline Markdown.
  129.  
  130. Markdown | Less | Pretty
  131. --- | --- | ---
  132. *Still* | `renders` | **nicely**
  133. 1 | 2 | 3
  134.  
  135. ## Blockquotes
  136.  
  137. > Blockquotes are very handy in email to emulate reply text.
  138. > This line is part of the same quote.
  139.  
  140. Quote break.
  141.  
  142. > This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
  143.  
  144. ## Horizontal Rule
  145.  
  146. Three or more...
  147.  
  148. ---
  149.  
  150. Hyphens
  151.  
  152. ***
  153.  
  154. Asterisks
  155.  
  156. ___
  157.  
  158. Underscores
  159.  
  160. ## Line Breaks
  161.  
  162. Here's a line for us to start with.
  163.  
  164. This line is separated from the one above by two newlines, so it will be a *separate paragraph*.
  165.  
  166. This line is also a separate paragraph, but...
  167. This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement