Files
pandoc/test/command/11090.md
2025-08-30 00:04:23 +02:00

949 B

% pandoc -f typst -t native
#include "command/11090/ch1.typ"

== Chapter Two

#figure(
  image("command/11090/media/image1.png"),
  caption: [This is an image.] 
)
^D
[ Header
    2 ( "" , [] , [] ) [ Str "Chapter" , Space , Str "One" ]
, Figure
    ( "" , [] , [] )
    (Caption
       Nothing [ Para [ Str "An" , Space , Str "image." ] ])
    [ Para
        [ Image
            ( "" , [] , [] )
            []
            ( "command/11090/media/image1.png" , "" )
        ]
    ]
, Header
    2 ( "" , [] , [] ) [ Str "Chapter" , Space , Str "Two" ]
, Figure
    ( "" , [] , [] )
    (Caption
       Nothing
       [ Para
           [ Str "This"
           , Space
           , Str "is"
           , Space
           , Str "an"
           , Space
           , Str "image."
           ]
       ])
    [ Para
        [ Image
            ( "" , [] , [] )
            []
            ( "command/11090/media/image1.png" , "" )
        ]
    ]
]