PHP Classes

File: test/expect/Ordered-and-unordered-lists.html

Recommend this page to a friend!
  Classes of Manuel Lemos   PHP Markdown Parser   test/expect/Ordered-and-unordered-lists.html   Download  
File: test/expect/Ordered-and-unordered-lists.html
Role: Auxiliary data
Content type: text/plain
Description: Original test HTML output file by John Gruber
Class: PHP Markdown Parser
Parse Markdown documents and generate HTML tags
Author: By
Last change: Fixed the end of line buffer variable setting.
Date: 8 years ago
Size: 1,297 bytes
 

Contents

Class file image Download
<h2>Unordered</h2> <p></p> <p>Asterisks tight:</p> <p>* asterisk 1 * asterisk 2 * asterisk 3</p> <p></p> <p>Asterisks loose:</p> <p>* asterisk 1</p> <p>* asterisk 2</p> <p>* asterisk 3</p> <p><em></em> *</p> <p>Pluses tight:</p> <p>+ Plus 1 + Plus 2 + Plus 3</p> <p></p> <p>Pluses loose:</p> <p>+ Plus 1</p> <p>+ Plus 2</p> <p>+ Plus 3</p> <p><em></em> *</p> <p></p> <p>Minuses tight:</p> <ul><li>Minus 1</li> <li>Minus 2</li> <li>Minus 3</li> </ul> <p>Minuses loose:</p> <ul><li>Minus 1</li> <li>Minus 2</li> <li>Minus 3</li> </ul> <h2>Ordered</h2> <p></p> <p>Tight:</p> <ol><li>First</li> <li>Second</li> <li>Third</li> </ol> <p>and:</p> <ol><li>One</li> <li>Two</li> <li>Three</li> </ol> <p>Loose using tabs:</p> <ol><li>First</li> <li>Second</li> <li>Third</li> </ol> <p>and using spaces:</p> <ol><li>One</li> <li>Two</li> <li>Three</li> </ol> <p>Multiple paragraphs:</p> <ol><li><p>Item 1, graf one.</p> <p>Item 2. graf two. The quick brown fox jumped over the lazy dog's back.</p> </li> <li>Item 2.</li> <li>Item 3.</li> </ol> <h2>Nested</h2> <p></p> <p>* Tab * Tab * Tab</p> <p>Here's another:</p> <ol><li>First</li> <li>Second: * Fee * Fie * Foe</li> <li>Third</li> </ol> <p>Same thing but with paragraphs:</p> <ol><li>First</li> <li>Second: * Fee * Fie * Foe</li> <li>Third</li> </ol>