Quarto

Install Quarto for rendering reproducible documents, reports, and documentation websites.

ansible-playbook -i inventory -K playbooks/lab-stack.yml --tags quarto

✅ Check

quarto --version
quarto check

Quarto test

mkdir -p ~/tmp-quarto-test && cd ~/tmp-quarto-test
cat > test.qmd <<'EOF'
---
title: "Lab Stack Test"
format: html
---

## It works

- Quarto: `r quarto::quarto_version()` (if R is installed)
- Docker: tested separately
- Git: configured
EOF

quarto render test.qmd
ls -la