Typography & Markdown Guide

Headings

Headings from h2 through h6 are available. An h1 is reserved for the article title and is automatically rendered.

Heading Two

Heading Three

Heading Four

Heading Five
Heading Six

Paragraphs

This is a standard paragraph. Writing in markdown is simple, natural, and easy to read — even in its raw form. Each paragraph is separated by a blank line.

Here is a second paragraph to show spacing between blocks of text. You can write as much or as little as you like within a single paragraph. The text will wrap automatically.


Emphasis

This is bold text and this is also bold text.

This is italic text and this is also italic text.

This is strikethrough text.

You can combine emphasis: bold and italic or bold and italic together.


Blockquotes

Words can be like X-rays if you use them properly — they’ll go through anything.

— Aldous Huxley

Nested blockquotes:

This is the first level of quoting.

This is a nested blockquote.

Back to the first level.


Lists

Unordered List

  • Item one
  • Item two
    • Nested item one
    • Nested item two
  • Item three

Ordered List

  1. First item
  2. Second item
    1. Nested first item
    2. Nested second item
  3. Third item

Task List

  • Write the poem
  • Edit the poem
  • Publish the poem

This is an inline link.

This is an inline link with a title.

URLs can be written directly: https://example.com


Images

Images can be included with alt text:

A quiet place


Code

Inline code: Use the print() function to output text.

Fenced code block:

def hello():
    print("Hello, world!")

hello()
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('Isabelle'));
<article class="prose">
  <h1>My Poem</h1>
  <p>Words that breathe.</p>
</article>

Tables

TitleAuthorYear
Milk and HoneyRupi Kaur2014
The Sun and Her FlowersRupi Kaur2017
DevotionsMary Oliver2017

Right-aligned and centered columns:

Left AlignedCenter AlignedRight Aligned
ContentContentContent
WordsWordsWords
TextTextText

Horizontal Rules

Three or more hyphens, asterisks, or underscores create a horizontal rule:


Line Breaks

For poetry and writing that needs
deliberate line breaks,
end a line with two spaces
before pressing enter.

Or use a backslash:
at the end of
each line.


Footnotes

Here is a sentence with a footnote1.

And another one2.


Definition Lists

Term
Definition of the term.
Poetry
A literary work in which the expression of feelings and ideas is given intensity by the use of distinctive style and rhythm.

Abbreviations

The HTML specification is maintained by the W3C.


Subscript and Superscript

H2O is water.

X2 is X squared.


Keyboard Input

Press Ctrl + C to copy.

Press Cmd + S to save.


Mark / Highlight

This is highlighted text for emphasis.


Summary

This page demonstrates the full range of available markdown syntax. Use it as a reference when writing your poems and notes.

Footnotes

  1. This is the first footnote.

  2. This is the second footnote with more detail.

Subscribe to my newsletter

All the latest posts directly in your inbox.