letsblaze


Markdown

A reference for all Markdown elements supported by letsblaze. Use this page to verify rendering before writing content.

Headings

<h1> is reserved for the page title. Use <h2> to <h6> in content.

H2

H3

H4

H5
H6

Paragraph

Standard paragraph text. Separate paragraphs with a blank line. Line breaks within a paragraph are collapsed to a space unless you end a line with two spaces or a backslash.

Blockquotes

Single-level blockquote.

Nested blockquote.

Inner level.

With attribution:

Do one thing and do it well.

Unix philosophy

Lists

Ordered:

  1. First
  2. Second
  3. Third

Unordered:

Nested:

Code

Inline: const x = 42

Fenced block:

function add(a, b) {
  return a + b;
}

Tables

Column AColumn BColumn C
LeftCentreRight
alignedalignedaligned

Horizontal rule


Inline link

Link with title

Images

![Alt text](image.jpg)
![Alt text with caption](image.jpg "Caption text")

Footnotes

Text with a footnote.1

Inline formatting

StyleSyntaxOutput
Bold**text**text
Italic_text_text
Strikethrough~~text~~text
Inline code`code`code

  1. Footnote content renders at the bottom of the page. ↩︎