Markdown is a form of markup which allows you to add semantics to your content.
Technically speaking it:
is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
A way of making content look a particular way. When writing markdown, try and remember that you’re trying to add additional meaning to the content, e.g., hierarchy, emphasis, or additional functionality, e.g., links to other content.
It adds underlying semantics to the content you write. By doing this, our content will perform better in terms of SEO as Google & co’s robots will be able to understand the content better. That, as it’s easy enough to grok.
Give the following a read through, and then come back to this guide. Once you’re familiar with the technicalities, we’ll talk specifics of how it works on Appear Here’s Editorial section.
Currently we only support headings from 1-4, i.e.:
# Top level heading
## Your second level heading
### etc.
#### etc.
You’ll never need to use a H1
, as that is used by the blog’s title:
For h2-4
, use them as necessary to structure your post in a sensible way. I.e., a h3
should only be used as a subheading to a h2
, a h4
as a subheading to a h3
etc.
You have two levels of emphasis you can add to your content:
*emphasised content*
**super-mega-emphasised content**
Which will look something like:
emphasised content
super-mega-emphasised content
Use it sparingly, and not as a way of breaking content up.
Markdown let’s you write images in a mega simple way:

While that’s great, it doesn’t let you add captions to the images in the correct way. Because of this, you’ll have to write some HTML. Don’t worry though, it’ll be a case of copying these snippets and replacing bits of them where necessary.
<figure>
<img src="IMAGE_URL" alt="IMAGE DESCRIPTION" />
</figure>
<figure>
<img src="IMAGE_URL" alt="IMAGE DESCRIPTION" />
<figcaption>
<p>IMAGE CAPTION</p>
</figcaption>
</figure>
Note: you should always fill in the image description, as this is enables the computers and screen readers to understand what the image is
<figure>
<a href="LINK_URL">
<img src="IMAGE_URL" alt="IMAGE DESCRIPTION" />
</a>
</figure>
<figure>
<a href="LINK_URL">
<img src="IMAGE_URL" alt="IMAGE DESCRIPTION" />
</a>
<figcaption>
<p>IMAGE CAPTION</p>
</figcaption>
</figure>
- View this post in it's raw, markdown form
- Official documentation.
- Cheatsheet
- Speak to one of the tech team