uce/site/demo/markdown-example.md
2026-06-15 12:00:46 +00:00

743 B

Markdown Demo

This page exercises strong, emphasis, strikethrough, code spans, and a bare URL: https://example.com/doc/index.uce

Task List

  • Parse markdown into an AST
  • Render markdown into HTML
  • Add even more extensions later

Table

Feature Status Notes
Headings Ready 1
Tables Ready 2
Components Ready 3

Quote

Markdown in UCE should be composable.

Components make that much more interesting.

:::warning title="Component-backed directive" This :::warning block is rendered through a normal UCE component selected from options["components"]. :::

Code

RENDER(Request& context)
{
	print(markdown_to_html("# hello"));
}