Skip to main content

Markdown Style

This page demonstrates all supported Markdown elements in the UmmIt theme. Use it as a reference when writing posts.

Headings

h3 — Section heading

h4 — Sub-section

h5 — Minor heading
h6 — Smallest heading

Inline formatting

Bold text · Italic text · Bold + italic · inline code · strikethrough

External link and internal link.

Blockquotes

Single-line quote.

Multi-paragraph blockquote.

Second paragraph inside the same quote.

Nested blockquotes are also supported:

Inner quote level.

Lists

Unordered

Ordered

  1. First step
  2. Second step
    1. Sub-step A
    2. Sub-step B
  3. Third step

Task list

Code

Inline

Use backticks for const x = 42 inline code.

Fenced block with language

export const data = {
  name: 'Name',
  value: 'Value'
}

export function getName() {
  return data.name
}

Fenced block without language

Plain preformatted text.
  Indentation is preserved.

Tables

FieldTypeRequiredDescription
titlestringYesTitle of the article
dateDateYesPublication date
descriptionstringNoSEO and listing summary
draftbooleanNoExclude from production

Horizontal rule

Above the line…


…below the line.

Images

Alt text

Video

Videos are supported via the video: true frontmatter flag. Embed using an <iframe> or <video> tag in your content.

When linking to other posts or external sites in your content, the theme may render hover preview cards for supported link types.

Frontmatter

Every post begins with YAML frontmatter between --- fences:

---
title: My Post Title
date: 2025-01-15
description: A short summary for SEO and listings
lastmod: 2025-06-01
image:
  src: /path/to/image.png
  alt: Description of the image
duration: 5 min
lang: en-US
tag: featured
draft: false
redirect: https://external-site.com/article
video: false
---

See Posts Props for the full field reference.