``` % pandoc -f html -t typst foo ^D #text(fill: orange)[foo] ``` ``` % pandoc -f html -t typst foo ^D foo ``` ``` % pandoc -f html -t typst
foo
^D #block(inset: 10pt)[ foo ] ``` ``` % pandoc -f html -t typst
foo
^D #block[ #set text(fill: purple); foo ] ``` ``` % pandoc -f html -t typst
foo
^D #block[ foo ] ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,auto,), fill: blue, [A], [B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#set text(fill: orange); #table( columns: 2, align: (auto,auto,), [A], [B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,auto,), [A], table.cell(fill: green)[B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,auto,), [A], [#set text(fill: fuchsia); B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,center,), [A], table.cell(align: center)[#set text(fill: maroon); B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,center,), [A], table.cell(align: horizon + center)[B], )] , kind: table ) ``` ``` % pandoc -f html -t typst
AB
^D #figure( align(center)[#table( columns: 2, align: (auto,auto,), [A], [B], )] , kind: table ) ```