Skip to main content
Settings
Color Mode
Theme Skin
Background

Appearance preferences are saved in this browser only.

Environment
Current Environment Production

Built with JEKYLL_ENV=production. Changes require deployment.

Quick Links
Theme & Build
Jekyll v3.10.0
Last Build Jul 21, 03:30
Page Location
Page Info
Layout default
Collection notes
Path _notes/cheatsheets/markdown.md
URL /notes/cheatsheets/markdown/
Date 2021-12-19

Markdown Cheatsheet

Quick reference guide for Markdown syntax including basic formatting, Jekyll-specific features, and Kramdown extensions

Basic Syntax

Jekyll Markdown Quick Reference

Kramdown quickref

Write in simply awesome markdown

This is a demo of all styled elements in Jekyll Now.

View the Markdown used to create this post.

This is a paragraph, it’s surrounded by whitespace. Next up are some headers, they’re heavily influenced by GitHub’s Markdown style.

Header 2 (H1 is reserved for post titles)##

Header 3

Header 4

A link to Jekyll Now. A big ass literal link http://github.com/barryclark/jekyll-now/

An image, located within /images

an image alt text

  • A bulletted list
  • alternative syntax 1
  • alternative syntax 2
    • an indented list item
  1. An
  2. ordered
  3. list

Inline markup styles:

  • italics
  • bold
  • code()

Blockquote

Nested Blockquote

Syntax highlighting can be used by wrapping your code in a liquid tag like so:

{% highlight JavaScript %}
/* Some pointless JavaScript */ var rawr = [“r”, “a”, “w”, “r”]; {% endhighlight %}

creates…

/* Some pointless JavaScript */ var rawr = ["r", "a", "w", "r"];

Use two trailing spaces
on the right
to create linebreak tags

Finally, horizontal lines



```


####See below for how it beautifully renders in HTML 😉


title: Markdown Style Guide —

This is a demo of all styled elements in Jekyll Now.

View the markdown used to create this post.

This is a paragraph, it’s surrounded by whitespace. Next up are some headers, they’re heavily influenced by GitHub’s markdown style.

Header 2 (H1 is reserved for post titles)##

Header 3

Header 4

A link to Jekyll Now. A big ass literal link http://github.com/barryclark/jekyll-now/

An image, located within /images

an image alt text

  • A bulletted list
  • alternative syntax 1
  • alternative syntax 2
    • an indented list item
  1. An
  2. ordered
  3. list

Inline markup styles:

  • italics
  • bold
  • code()

Blockquote

Nested Blockquote

Syntax highlighting can be used by wrapping your code in a liquid tag like so:

{% highlight javascript %}
/* Some pointless Javascript */ var rawr = [“r”, “a”, “w”, “r”]; {% endhighlight %}

creates…

/* Some pointless Javascript */
var rawr = ["r", "a", "w", "r"];

Use two trailing spaces
on the right
to create linebreak tags

Finally, horizontal lines