DevOps sync (2026-05-21): - Remove onlyoffice-desktopeditors from absent list (actively used) - Add gnome-keyring, rbw to common role (secrets migration) - Add perl-image-exiftool, icoutils, innoextract-git to dev-tools (Windows installer inspection) - Create fonts role: Inter, Cascadia Code, Fira, Source Sans, TeX Gyre - Create pdf role: zathura, zathura-pdf-mupdf, python-weasyprint - Register new roles in workstation.yml PDF comparison: - Add pdf-comparison docs with Quarto/Typst/Pandoc outputs - Add batch-pdf.sh script - Update yazi-cheatsheet.md - Ignore .quarto/ cache
22 lines
463 B
YAML
22 lines
463 B
YAML
# quarto.yml - Batch PDF conversion config
|
|
# Use: quarto render docs/*.md --to typst-pdf
|
|
# Or: quarto render docs/md-to-pdf-combo.md --to typst-pdf
|
|
|
|
project:
|
|
type: default
|
|
output-dir: "./docs/pdf-output"
|
|
|
|
format:
|
|
typst-pdf:
|
|
default: true
|
|
toc: false
|
|
number-sections: true
|
|
mainfont: "Inter"
|
|
monofont: "JetBrains Mono"
|
|
fontsize: 9pt
|
|
papersize: a4
|
|
margin:
|
|
top: 1.5cm
|
|
bottom: 1.5cm
|
|
left: 1.5cm
|
|
right: 1.5cm |