A Markdown extension to compile typst code blocks to SVG.
Project description
markdown-typst
A Python Markdown extension that compiles typst fenced code blocks into inline SVG images.
Features
- Detects fenced code blocks labeled as
typstwithtypst-previewin the first line. - Compiles the Typst code into SVG format using the
typstcompiler.
Installation
pip install markdown-typst
Usage
import markdown
import markdown_typst
md = markdown.Markdown(extensions=["markdown_typst.typst_extension"])
input_text = '''
```typst
// typst-preview
# Your Typst code here
```
'''
html = md.convert(input_text)
print(html)
Integrate Typst Rendering with MkDocs
To enable Typst syntax rendering in MkDocs, add the following lines to your mkdocs.yml:
markdown_extensions:
- typst
Example Usage
# Hello, typst
!!! note
!!! warning
```typst
// typst-preview
// Code from https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.3.2/gallery/waves.typ
#import "@preview/cetz:0.3.2": canvas, draw, vector, matrix
#set page(width: auto, height: auto, margin: .5cm)
#canvas({
import draw: *
ortho(y: -30deg, x: 30deg, {
on-xz({
grid((0,-2), (8,2), stroke: gray + .5pt)
})
// Draw a sine wave on the xy plane
let wave(amplitude: 1, fill: none, phases: 2, scale: 8, samples: 100) = {
line(..(for x in range(0, samples + 1) {
let x = x / samples
let p = (2 * phases * calc.pi) * x
((x * scale, calc.sin(p) * amplitude),)
}), fill: fill)
let subdivs = 8
for phase in range(0, phases) {
let x = phase / phases
for div in range(1, subdivs + 1) {
let p = 2 * calc.pi * (div / subdivs)
let y = calc.sin(p) * amplitude
let x = x * scale + div / subdivs * scale / phases
line((x, 0), (x, y), stroke: rgb(0, 0, 0, 150) + .5pt)
}
}
}
on-xy({
wave(amplitude: 1.6, fill: rgb(0, 0, 255, 50))
})
on-xz({
wave(amplitude: 1, fill: rgb(255, 0, 0, 50))
})
})
})
```
Requirements
markdowntypst
License
MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
markdown_typst-0.1.2.tar.gz
(4.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file markdown_typst-0.1.2.tar.gz.
File metadata
- Download URL: markdown_typst-0.1.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9a2121af2a143e85e51222d81d0ebb4e151108894749095246add6809ad75f5
|
|
| MD5 |
44061d8b35d9535c82bee00126e1a3d3
|
|
| BLAKE2b-256 |
50a77b8b41ecb86de36d5e5703d39b6d7813cf28cc3ba08a6862aaf33ce5c345
|
File details
Details for the file markdown_typst-0.1.2-py3-none-any.whl.
File metadata
- Download URL: markdown_typst-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88e4c0ad19d4e13b9200bc76704ca63f858aa3b69b31b5ead604708a69734efe
|
|
| MD5 |
f15c72ccc2db9d7ee01d9caa8dca5efb
|
|
| BLAKE2b-256 |
87074c6f050ddaf26892f3052ae4b652a16a14b661086b124805c4c9f1d95f25
|