18 releases

new 0.13.12-rc4 Apr 17, 2025
0.13.10 Mar 23, 2025
0.13.2-rc2 Feb 27, 2025
0.12.21 Feb 21, 2025

#621 in Programming languages

Download history 167/week @ 2025-02-15 466/week @ 2025-02-22 355/week @ 2025-03-01 443/week @ 2025-03-08 269/week @ 2025-03-15 203/week @ 2025-03-22 8/week @ 2025-03-29 2/week @ 2025-04-05 194/week @ 2025-04-12

473 downloads per month
Used in tinymist-query

Apache-2.0

660KB
15K SLoC

Typlite

Converts a subset of typst to markdown.

Basic Usage

# default output is main.md
typlite main.typ
# specify output
typlite main.typ output.md

Feature

  • Contexual Content Rendering: Contents begin with context keyword will be rendered as svg output. The svg output will be embedded inline in the output file as base64 by default, if the --assets-path parameter is not specified. Otherwise, the svg output will be saved in the specified folder and the path will be embedded in the output file. By specify the --assets-src-path parameter, the source code of the context will also be saved in the specified folder.

    For example, the following folder structure is generated by the following command:

    typlite main.typ --assets-path assets --assets-src-path assets-src
    
    .
    ├── assets # when --assets-path is specified
    │   ├── 1_Dark.svg
    │   └── 1_Light.svg
    ├── assets-src # when --assets-src-path is specified
    │   └── 1.typ # 1 is the numbering of the context block
    ├── main.md # output file
    └── main.typ # input file
    
  • Raw Output: Raw codes with typlite language will be directly output into the Markdown result.

Dependencies

~80MB
~1M SLoC