Skip to content

Instantly share code, notes, and snippets.

@mtias
Created December 21, 2016 14:52
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mtias/2e3c06e630c1b776b7518609e870dd36 to your computer and use it in GitHub Desktop.
An example post
## Grammar
<!-- wp:x y:z -->
Content
<!-- /wp -->
### Text
<!-- wp:text -->
The quick brown fox jumps over the lazy dog.
<!-- /wp -->
<!-- wp:text -->
<p>The quick brown fox jumps over the lazy dog.</p>
<!-- /wp -->
<!-- wp:text -->
<p style="text-align: right;">The quick brown fox jumps over the lazy dog.</p>
<!-- /wp -->
### Image
<!-- wp:image -->
<img class="" src="/" />
<!-- /wp -->
<!-- wp:image -->
<figure class="">
<img src="/">
</figure>
<!-- /wp -->
### Image with caption
<!-- wp:image -->
[caption]<img src="/" /> A picture is worth a thousand words.[/caption]
<!-- /wp -->
<!-- wp:image -->
<figure>
<img src="/">
<figcaption>A picture is worth a thousand words.</figcaption>
</figure>
<!-- /wp -->
### Quote
<!-- wp:quote -->
<blockquote>
<p>The quick brown fox jumps over the lazy dog.</p>
<footer>— by Author</footer>
</blockquote>>
<!-- /wp -->
### HTML
<!-- wp:html -->
<div class="custom-stuff">
<canvas></canvas>
<p>Look, Ma, canvas!</p>
</div>
<!-- /wp -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment