uce/site/demo/markdown-example.md

746 B

Markdown Demo

This page exercises strong, emphasis, strikethrough, code spans, and a bare URL: https://uce.openfu.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"));
}