I want to compile a docx file into a Typst file, I believe deep down docx is XML, and Typst is close to markdown with interesting functionalities, is that feasible? Note that Typst does have syntax to define functions and call them and I want to create special functions during the code gen step, is ANTLR the right tool for the job? Are there better tools? I want to have as few bugs as possible

  • @[email protected]
    link
    fedilink
    77 months ago

    Antlr sounds excessive for either of those. Use an ordinary xml library for docx (if there’s not already one for docx) and something simple for typst.

      • @[email protected]
        link
        fedilink
        37 months ago

        Oh, ok, antlr would be inappropriate then. I’d check whether pandoc already does that conversion.

        • @[email protected]OP
          link
          fedilink
          2
          edit-2
          7 months ago

          I just checked, it does convert to Typst but I do want to write custom stuff alongside what pandoc will output, that seems like the right tool and saves me a lot of efforts, thanks