Last active
December 29, 2015 23:58
-
-
Save kzykhys/7745918 to your computer and use it in GitHub Desktop.
Markdown cheatsheet for kzykhys/Ciconia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <blockquote> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio.</p> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio.</p> | |
| </blockquote> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| > Nulla neque nisl, fringilla sed blandit non, pretium eu odio. | |
| > Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <blockquote> | |
| <p>Lorem ipsum dolor sit amet,</p> | |
| <blockquote> | |
| <p>consectetur adipiscing elit. | |
| Nulla neque nisl, | |
| fringilla sed blandit non, pretium eu odio.</p> | |
| </blockquote> | |
| </blockquote> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > Lorem ipsum dolor sit amet, | |
| > > consectetur adipiscing elit. | |
| > > Nulla neque nisl, | |
| > fringilla sed blandit non, pretium eu odio. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <blockquote> | |
| <h3>H3</h3> | |
| <blockquote> | |
| <p>This is a nested blockquote</p> | |
| </blockquote> | |
| <ul> | |
| <li>list</li> | |
| <li>list</li> | |
| </ul> | |
| </blockquote> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > ### H3 | |
| > | |
| > > This is a nested blockquote | |
| > | |
| > * list | |
| > * list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Lorem ipsum dolor sit amet</p> | |
| <pre><code>consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio. | |
| </code></pre> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lorem ipsum dolor sit amet | |
| consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <pre><code><div class="row"> | |
| Hello World! | |
| </div> | |
| </code></pre> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="row"> | |
| Hello World! | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><em>single asterisks</em></p> | |
| <p><em>single underscores</em></p> | |
| <p><strong>double asterisks</strong></p> | |
| <p><strong>double underscores</strong></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *single asterisks* | |
| _single underscores_ | |
| **double asterisks** | |
| __double underscores__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>Header 1</h1> | |
| <h2>Header 2</h2> | |
| <h3>Header 3</h3> | |
| <h4>Header 4</h4> | |
| <h5>Header 5</h5> | |
| <h6>Header 6</h6> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Header 1 | |
| ## Header 2 | |
| ### Header 3 | |
| #### Header 4 | |
| ##### Header 5 | |
| ###### Header 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>Header 1</h1> | |
| <h2>Header 2</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Header 1 | |
| ======== | |
| Header 2 | |
| -------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <hr> | |
| <hr> | |
| <hr> | |
| <hr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * * * | |
| ******* | |
| - - - - | |
| -------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><img src="/path/to/image.png" alt="Alt text"></p> | |
| <p><img src="/path/to/image.png" alt="Alt text" title="Title"></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|  | |
|  |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><img src="/path/to/image.png" alt="Alt text"></p> | |
| <p><img src="/path/to/image.png" alt="Alt text" title="Title"></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ![Alt text][id1] | |
| ![Alt text][id2] | |
| [id1]: /path/to/image.png | |
| [id2]: /path/to/image.png "Title" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Don't forget to add <code>echo $foo;</code>.</p> | |
| <p>Please replace <code><b></code> to <code><strong></code>.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Don't forget to add `echo $foo;`. | |
| Please replace `<b>` to `<strong>`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>This is an <a href="http://example.com">inline link</a>.</p> | |
| <p>This <a href="http://example.com" title="example website">link</a> has title attribute.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This is an [inline link](http://example.com). | |
| This [link](http://example.com "example website") has title attribute. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>This is an <a href="http://example.com/">reference style link</a>.</p> | |
| <p>This <a href="http://example.com/" title="example website">link</a> has title attribute.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This is an [reference style link][id1]. | |
| This [link][id2] has title attribute. | |
| [id1]: http://example.com/ | |
| [id2]: http://example.com/ "example website" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>You can <a href="http://example.com/">omit the id of the link</a>.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You can [omit the id of the link][]. | |
| [omit the id of the link]: http://example.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ol> | |
| <li>one</li> | |
| <li>two</li> | |
| <li>three</li> | |
| </ol> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. one | |
| 2. two | |
| 3. three |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla neque nisl, fringilla sed blandit non, pretium eu odio.</p> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla neque nisl, fringilla sed blandit non, pretium eu odio. | |
| Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
| Nulla neque nisl, fringilla sed blandit non, pretium eu odio. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <li>one</li> | |
| <li>two</li> | |
| <li>three</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * one | |
| * two | |
| * three |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <pre><code>$ git clone https://github.com/kzykhys/Ciconia.git | |
| $ cd Ciconia | |
| $ composer install | |
| </code></pre> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| $ git clone https://github.com/kzykhys/Ciconia.git | |
| $ cd Ciconia | |
| $ composer install | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <pre class="prettyprint lang-php"><code><?php | |
| require __DIR__ . '/vendor/autoload.php'; | |
| </code></pre> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` php | |
| <?php | |
| require __DIR__ . '/vendor/autoload.php'; | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><a href="http://www.example.com">http://www.example.com</a></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.example.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><del>strike</del></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~~strike~~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table> | |
| <thead> | |
| <tr> | |
| <th>head</th> | |
| <th>head</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>body</td> | |
| <td>body</td> | |
| </tr> | |
| </tbody> | |
| </table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | head | head | | |
| |------|------| | |
| | body | body | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table> | |
| <thead> | |
| <tr> | |
| <th>head</th> | |
| <th>head</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>body</td> | |
| <td>body</td> | |
| </tr> | |
| </tbody> | |
| </table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| head | head | |
| -----|----- | |
| body | body |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table> | |
| <thead> | |
| <tr> | |
| <th align="right">head</th> | |
| <th align="center">head</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td align="right">body</td> | |
| <td align="center">body</td> | |
| </tr> | |
| </tbody> | |
| </table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | head | head | | |
| |-----:|:----:| | |
| | body | body | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <li><input type="checkbox"> This is an imcomplete task.</li> | |
| <li><input type="checkbox" checked="checked"> This is a complete task.</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - [ ] This is an imcomplete task. | |
| - [x] This is a complete task. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment