```
% 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
^D
#figure(
align(center)[#table(
columns: 2,
align: (auto,auto,),
fill: blue,
[A], [B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
^D
#figure(
align(center)[#set text(fill: orange); #table(
columns: 2,
align: (auto,auto,),
[A], [B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
^D
#figure(
align(center)[#table(
columns: 2,
align: (auto,auto,),
[A], table.cell(fill: green)[B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
^D
#figure(
align(center)[#table(
columns: 2,
align: (auto,auto,),
[A], [#set text(fill: fuchsia); B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
^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
^D
#figure(
align(center)[#table(
columns: 2,
align: (auto,center,),
[A], table.cell(align: horizon + center)[B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
^D
#figure(
align(center)[#table(
columns: 2,
align: (auto,auto,),
[A], [B],
)]
, kind: table
)
```
```
% pandoc -f html -t typst
Paragraph before.
Paragraph after.
^D
Paragraph before.
#{set text(size: 3em); table(
columns: 3,
align: (auto,auto,auto,),
[A], [B], [C],
)}
Paragraph after.
```
```
% pandoc -f html -t typst
Paragraph before.
Paragraph after.
^D
Paragraph before.
#figure(
align(center)[#set text(size: 3em); #table(
columns: 3,
align: (auto,auto,auto,),
[A], [B], [C],
)]
, kind: table
)
Paragraph after.
```
```
% pandoc -f html -t typst
Paragraph before.
Paragraph after.
^D
Paragraph before.
#table(
columns: 3,
align: (auto,auto,auto,),
[A], [B], [C],
)
Paragraph after.
```