Markdown (my version) Syntax


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. ---- = <hr />
  2.  
  3. __strong__ = <strong>strong</strong>
  4. _emphasis_ = <em>emphasis</em>
  5. ^super^ = <sup>super</sup>
  6. ~sub~ = <sub>sub</sub>
  7. %small% = <small>small</small>
  8. $big% = <big>big</big>
  9. `CEO`(Chief Executive Officer) = <accronym title="Chief...">CEO</acronym>
  10. `term`=(definition) = <dfn title="definition">term</dfn>
  11. ---delete--- = <del>delete</del>
  12. +++insert+++ = <ins>insert</ins>
  13.  
  14.  
  15. headers
  16.  
  17. # level one heading
  18. ## level two
  19. ### level three
  20. #### level four
  21. ##### level five
  22.  
  23.  
  24. lists
  25.  
  26. numbered
  27. 1. list item
  28. 2. list item 2
  29.  
  30. bulleted
  31. + list item
  32. + list item two
  33.  
  34. or
  35.  
  36. - list item
  37. - list item two
  38.  
  39. or
  40.  
  41. * list item
  42. * list item two
  43.  
  44.  
  45. images
  46.  
  47. ![alt text][linkid]
  48. ![alt text](image url)
  49.  
  50. [linkid] url "alternate text or title attribute"
  51.  
  52.  
  53. links
  54.  
  55. [link text][linkid]
  56. [link text](link url)
  57.  
  58. [linkid] url "alternate text or title attribute"

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.