Advertisement
andruhovski

HTML to Markdown test

Jun 26th, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Markdown demo
  5. </title>
  6. <body>
  7. <h1>Heading</h1>
  8.  
  9. <h2>Sub-heading</h2>
  10.  
  11. <p>Paragraphs are separated
  12. by a blank line.</p>
  13.  
  14. <p>Two spaces at the end of a line<br />
  15. produces a line break.</p>
  16.  
  17. <p>Text attributes <em>italic</em>,
  18. <strong>bold</strong>, <code>monospace</code>.</p>
  19.  
  20. <p>Horizontal rule:</p>
  21.  
  22. <hr />
  23.  
  24. <p>Bullet list:</p>
  25.  
  26. <ul>
  27. <li>apples</li>
  28. <li>oranges</li>
  29. <li>pears</li>
  30. </ul>
  31.  
  32. <p>Numbered list:</p>
  33.  
  34. <ol>
  35. <li>wash</li>
  36. <li>rinse</li>
  37. <li>repeat</li>
  38. </ol>
  39.  
  40. <p>A <a href="http://example.com">link</a>.</p>
  41.  
  42. <p><img alt="Image" src="Image_icon.png" /></p>
  43.  
  44. <blockquote>
  45. <p>Markdown uses email-style &gt; characters for blockquoting.</p>
  46. </blockquote>
  47.  
  48. <p>Inline <abbr title="Hypertext Markup Language">HTML</abbr> is supported.</p>
  49. </body>
  50. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement