We Recommend

Pro JavaScript Techniques Pro JavaScript Techniques
Pro JavaScript Techniques is the ultimate JavaScript book for the modern web developer. It provides everything you need to know about modern JavaScript, and shows what JavaScript can do for your web sites. This book doesn't waste any time looking at things you already know, like basic syntax and structures.


Posted By

roberocity on 10/10/06


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

mzim


Markdown (my version) Syntax


Published in: Other 


  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
Posted By: mdavie on October 24, 2006

---- =

strong = strong emphasis = emphasis ^super^ = super ~sub~ = sub %small% = small $big% = big CEO(Chief Executive Officer) = CEO term=(definition) = term ---delete--- = delete +++insert+++ = insert

headers

level one heading

level two

level three

level four

level five

lists

numbered 1. list item 2. list item 2

bulleted + list item + list item two

or

list item list item two

or

list item list item two

images

![alt text][linkid] !alt text

[linkid] url "alternate text or title attribute"

links

[link text][linkid] link text

[linkid] url "alternate text or title attribute"

You need to login to post a comment.