% title "Markdown Basics" %>
<%= content_for :page_meta do %>
<% end %>
Below are some examples of commonly used markdown syntax. If you want to dive deeper, check out this cheat sheet.
Italics: *asterisks* or _underscores_
Bold: **double asterisks** or __double underscores__
I'm an inline link: [I'm an inline link](put-link-here)

Add a header to your post with this syntax:
#One '#' for a h1 header
##Two '#'s for a h2 header
...
######Six '#'s for a h6 header
We support native Liquid tags in our editor, but have created our own custom tags listed below:
Using the twitter Liquid tag will allow the tweet to pre-render from the server, providing your reader with a better experience. All you need is the tweet id from the url.
{% twitter 834439977220112384 %}
All you need is the GitHub issue or comment URL.
{% github https://github.com/thepracticaldev/dev.to/issues/9 %}
All you need is the gist link
{% gist https://gist.github.com/QuincyLarson/4bb1682ce590dc42402b2edddbca7aaa %}
All you need is the id from the URL.
{% youtube 9z-Pdfxxdyo %}{% vimeo 193110695 %}All you need is the Instagram post id from the URL.
{% instagram BXgGcAUjM39 %}
To parse Liquid tags as code, simply wrap it with a single backtick or triple backticks.
`{% mytag %}{{ site.SOMETHING }}{% endmytag %}`
One specific edge case is with using the raw tag. To properly escape it, use this format:
`{% raw %}{{site.SOMETHING }} {% ``endraw`` %}`