Unified Markdown Processing Test

Unified Markdown Processing Test

This content demonstrates GitHub Flavored Markdown features processed with unified, remark-gfm, and rehype-raw!

GitHub Flavored Markdown Features

Strikethrough

This text should be struck through

Tables

Feature Status Notes
Strikethrough Should work with remark-gfm
Tables Like this one
Task Lists See below
HTML in Markdown With rehype-raw

Task Lists

  • Completed task
  • Pending task
  • Another completed task
  • Another pending task

HTML Elements in Markdown

This should work with underlined text and highlighted text.

Note: This is HTML content inside markdown that should be preserved with rehype-raw.

Code Blocks

// This is a JavaScript code block
function hello() {
    console.log("Hello from unified markdown processing!");
}

Links and Autolinks

Regular link: Kobweb Documentation

Autolink: https://kobweb.varabyte.com

Emphasis and Strong

Italic text and bold text and bold italic text


✅ If you can see all the above features working correctly, then the unified markdown processing with remark-gfm and rehype-raw is functioning properly!