Skip to content

Instantly share code, notes, and snippets.

@kzykhys
Last active December 29, 2015 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kzykhys/7745918 to your computer and use it in GitHub Desktop.
Save kzykhys/7745918 to your computer and use it in GitHub Desktop.
Markdown cheatsheet for kzykhys/Ciconia
<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>
> 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.
<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>
> Lorem ipsum dolor sit amet,
> > consectetur adipiscing elit.
> > Nulla neque nisl,
> fringilla sed blandit non, pretium eu odio.
<blockquote>
<h3>H3</h3>
<blockquote>
<p>This is a nested blockquote</p>
</blockquote>
<ul>
<li>list</li>
<li>list</li>
</ul>
</blockquote>
> ### H3
>
> > This is a nested blockquote
>
> * list
> * list
<p>Lorem ipsum dolor sit amet</p>
<pre><code>consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
</code></pre>
Lorem ipsum dolor sit amet
consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
<pre><code>&lt;div class="row"&gt;
Hello World!
&lt;/div&gt;
</code></pre>
<div class="row">
Hello World!
</div>
<p><em>single asterisks</em></p>
<p><em>single underscores</em></p>
<p><strong>double asterisks</strong></p>
<p><strong>double underscores</strong></p>
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
<h1>Header 1</h1>
<h2>Header 2</h2>
Header 1
========
Header 2
--------
* * *
*******
- - - -
--------
<p><img src="/path/to/image.png" alt="Alt text"></p>
<p><img src="/path/to/image.png" alt="Alt text" title="Title"></p>
![Alt text](/path/to/image.png)
![Alt text](/path/to/image.png "Title")
<p><img src="/path/to/image.png" alt="Alt text"></p>
<p><img src="/path/to/image.png" alt="Alt text" title="Title"></p>
![Alt text][id1]
![Alt text][id2]
[id1]: /path/to/image.png
[id2]: /path/to/image.png "Title"
<p>Don't forget to add <code>echo $foo;</code>.</p>
<p>Please replace <code>&lt;b&gt;</code> to <code>&lt;strong&gt;</code>.</p>
Don't forget to add `echo $foo;`.
Please replace `<b>` to `<strong>`.
<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 is an [reference style link][id1].
This [link][id2] has title attribute.
[id1]: http://example.com/
[id2]: http://example.com/ "example website"
<p>You can <a href="http://example.com/">omit the id of the link</a>.</p>
You can [omit the id of the link][].
[omit the id of the link]: http://example.com/
<ol>
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
1. one
2. two
3. three
<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>
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.
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<pre><code>$ git clone https://github.com/kzykhys/Ciconia.git
$ cd Ciconia
$ composer install
</code></pre>
```
$ git clone https://github.com/kzykhys/Ciconia.git
$ cd Ciconia
$ composer install
```
<pre class="prettyprint lang-php"><code>&lt;?php
require __DIR__ . '/vendor/autoload.php';
</code></pre>
``` php
<?php
require __DIR__ . '/vendor/autoload.php';
```
<p><del>strike</del></p>
<table>
<thead>
<tr>
<th>head</th>
<th>head</th>
</tr>
</thead>
<tbody>
<tr>
<td>body</td>
<td>body</td>
</tr>
</tbody>
</table>
| head | head |
|------|------|
| body | body |
<table>
<thead>
<tr>
<th>head</th>
<th>head</th>
</tr>
</thead>
<tbody>
<tr>
<td>body</td>
<td>body</td>
</tr>
</tbody>
</table>
head | head
-----|-----
body | body
<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>
| head | head |
|-----:|:----:|
| body | body |
<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 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