☂️ About me
  • Art and science communication
  • Portafolio
  • Talks

Home

Write, test, document, and distribute software packages and technical articles — all in one place, your notebook.

from fastcore.foundation import L from nbdev import qmd

def img(fname, classes=None, kwargs): return qmd.img(f”images/{fname}“, classes=classes, kwargs) def btn(txt, link): return qmd.btn(txt, link=link, classes=[‘btn-action-primary’, ‘btn-action’, ‘btn’, ‘btn-success’, ‘btn-lg’]) def banner(txt, classes=None, style=None): return qmd.div(txt, L(‘hero-banner’)+classes, style=style)

features = L( (‘docs’, ‘Beautiful technical documentation and scientific articles with Quarto’), (‘testing’, ‘Out-of-the-box continuous integration with GitHub Actions’), (‘packaging’, ‘Publish code to PyPI and conda, and prose to GitHub Pages’), (‘vscode’, ‘Two-way sync with your favourite IDEs’), (‘jupyter’, ‘Write prose, code, and tests in notebooks — no context-switching’), (‘git’, ‘Git-friendly notebooks: human-readable merge conflicts; no unwanted metadata’) —

Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.

Running Code

When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

Code
1 + 1
[1] 2

You can add options to executable code like this

[1] 4

The echo: false option disables the printing of code (only output is displayed).

-Haly-en-