Advertisement
evilqubit

markdown

Oct 25th, 2013
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. - - - - - - - - - - - - Markdown simplified - - - - - - - - - - - -
  2.  
  3. _xxxxx_ italic
  4. **xxxx** bold
  5. ----------
  6. # ## ### #### ##### ###### titles
  7. --------------
  8. [xxxx](xxxx.com) links
  9. -----------------
  10. [][]
  11. [] : xx.com link by ref
  12. ----------------
  13. ![]() image tag
  14. could be done by ref also
  15. -----------------
  16. * xxx | 1.xxx
  17. * yyy | 2.yyy
  18. --> lists
  19. ------------
  20. space for new line
  21. ------------------
  22. syntax / code block
  23. ```javascript
  24. var s = "JavaScript syntax highlighting";
  25. alert(s);
  26. ```
  27. ---------------------
  28. Colons can be used to align columns.
  29.  
  30. | Tables | Are | Cool |
  31. | ------------- |:-------------:| -----:|
  32. | col 3 is | right-aligned | $1600 |
  33. | col 2 is | centered | $12 |
  34. | zebra stripes | are neat | $1 |
  35.  
  36. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
  37.  
  38. Markdown | Less | Pretty
  39. --- | --- | ---
  40. *Still* | `renders` | **nicely**
  41. 1 | 2 | 3
  42. -----------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement