↑↓ rolar esc voltar
EN

Markdown feature lab

This entry exists to exercise the Markdown features the site should support without needing custom HTML in normal writing.

Inline formatting

You can mix strong text, emphasis, strikethrough, inline code, and ordinary links inside a normal paragraph.1

You can also mention shortcuts like Esc and Enter directly in the prose.

Lists and task lists

  • unordered lists
  • nested items
    • can still be used
    • without breaking the rhythm
  1. ordered lists work too
  2. and should stay readable
  3. even when they run long
  • content collections are working
  • active-item selection is working
  • final content copy still needs to be written

Table

ElementStatusNotes
ParagraphsGoodThe default reading flow is stable
TablesNeeds stylingWidth and borders matter
Code blocksGoodMono treatment already fits the site
MermaidAddedRequires client-side rendering

Blockquote

A good writing interface should disappear just enough to let the text become the event.

Code blocks

const sections = ['writings', 'thoughts', 'about'];

export function activeLabel(index: number) {
  return sections[index] ?? sections[0];
}
npm run build

Details

Open a small note This is a native disclosure element rendered from inside Markdown content.

Horizontal rule


Mermaid diagram

flowchart TD
  A[Home] --> B[Writings]
  A --> C[Thoughts]
  A --> D[About]
  B --> E[Entry Page]
  C --> F[Short Note]

Footnote

Footnotes help when you want a small aside without bloating the main line of thought.2

Footnotes

  1. This relies on GFM support in the markdown pipeline.

  2. It is useful for references, clarifications, or small technical notes.