MDZX

Markdown pages with embedded ZX, and an explicit PageContext when you need it.

You are on:

/examples/mdzx

Also see the pure markdown sibling: Pure Markdown.

Loading...

Hello, ZX Dev!

John

20

Admin

Jane

21

Member

0

1

2

3

4

5

6

7

8

9

Component with props

MDZX components declare Props (and usually var props); render is generated for you.

Hello

Ziex

This card is a pure MDZX component (greeting.mdzx) with Props.

Formatting

Use bold, italic, bold italic, strike, and inline code.

Escaped: *not emphasis*

Home · Examples · https://ziex.dev

ZX logo alt

Lists

  • Unordered item one
  • Unordered item two
  • Unordered item three
  1. First ordered
  2. Second ordered
  3. Third ordered
  • Task done
  • Task open

Quote & break

MDZX keeps markdown readable and ZX components first-class.
Nested ideas stay in the quote.

Code fences

Multiple languages closing fences must not leak into the code element.

console.log("fenced code without trailing backticks");
const answer = 42;
const std = @import("std");
pub fn main() void {
    std.debug.print("hello from Zig fence\n", .{});
}
type Point = { x: number; y: number };
export const origin: Point = { x: 0, y: 0 };
plain fence without a language tag
line two

More headings

H1 Header

H2 Header

H3 Header

H4 Header

H5 Header
H6 Header

Paragraphs & links

A second paragraph after a blank line. Reference-style later if needed.

Go home again, or open Examples.