packages feed

typst-0.9: test/typ/text/deco-00.out

--- parse tree ---
[ Code
    "typ/text/deco-00.typ"
    ( line 1 , column 2 )
    (Let
       (BasicBind (Just (Identifier "red")))
       (FuncCall
          (Ident (Identifier "rgb"))
          [ NormalArg (Literal (String "fc0030")) ]))
, ParBreak
, Comment
, SoftBreak
, Code
    "typ/text/deco-00.typ"
    ( line 4 , column 2 )
    (FuncCall
       (Ident (Identifier "strike"))
       [ BlockArg
           [ Text "Statements"
           , Space
           , Text "dreamt"
           , Space
           , Text "up"
           , Space
           , Text "by"
           , Space
           , Text "the"
           , Space
           , Text "utterly"
           , Space
           , Text "deranged"
           , Text "."
           ]
       ])
, ParBreak
, Comment
, SoftBreak
, Code
    "typ/text/deco-00.typ"
    ( line 7 , column 2 )
    (FuncCall
       (Ident (Identifier "underline"))
       [ KeyValArg (Identifier "offset") (Literal (Numeric 5.0 Pt))
       , BlockArg [ Text "Further" , Space , Text "below" , Text "." ]
       ])
, ParBreak
, Comment
, SoftBreak
, Code
    "typ/text/deco-00.typ"
    ( line 10 , column 2 )
    (FuncCall
       (Ident (Identifier "underline"))
       [ KeyValArg (Identifier "stroke") (Ident (Identifier "red"))
       , KeyValArg (Identifier "evade") (Literal (Boolean False))
       , BlockArg
           [ Text "Critical"
           , Space
           , Text "information"
           , Space
           , Text "is"
           , Space
           , Text "conveyed"
           , Space
           , Text "here"
           , Text "."
           ]
       ])
, ParBreak
, Comment
, SoftBreak
, Code
    "typ/text/deco-00.typ"
    ( line 13 , column 2 )
    (FuncCall
       (Ident (Identifier "text"))
       [ KeyValArg (Identifier "fill") (Ident (Identifier "red"))
       , NormalArg
           (FuncCall
              (Ident (Identifier "underline"))
              [ BlockArg
                  [ Text "Change"
                  , Space
                  , Text "with"
                  , Space
                  , Text "the"
                  , Space
                  , Text "wind"
                  , Text "."
                  ]
              ])
       ])
, ParBreak
, Comment
, SoftBreak
, Code
    "typ/text/deco-00.typ"
    ( line 16 , column 2 )
    (FuncCall
       (Ident (Identifier "overline"))
       [ NormalArg
           (FuncCall
              (Ident (Identifier "underline"))
              [ BlockArg
                  [ Text "Running"
                  , Space
                  , Text "amongst"
                  , Space
                  , Text "the"
                  , Space
                  , Text "wolves"
                  , Text "."
                  ]
              ])
       ])
, ParBreak
]
--- evaluated ---
document(body: { parbreak(), 
                 text(body: [
]), 
                 strike(body: text(body: [Statements dreamt up by the utterly deranged.])), 
                 parbreak(), 
                 text(body: [
]), 
                 underline(body: text(body: [Further below.]), 
                           offset: 5.0pt), 
                 parbreak(), 
                 text(body: [
]), 
                 underline(body: text(body: [Critical information is conveyed here.]), 
                           evade: false, 
                           stroke: rgb(98%,0%,18%,100%)), 
                 parbreak(), 
                 text(body: [
]), 
                 text(body: underline(body: text(body: [Change with the wind.])), 
                      fill: rgb(98%,0%,18%,100%)), 
                 parbreak(), 
                 text(body: [
]), 
                 overline(body: underline(body: text(body: [Running amongst the wolves.]))), 
                 parbreak() })