gitextract__535gg22/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── tagbot.yml ├── .gitignore ├── CHANGELOG.md ├── COPYING ├── LICENSE.txt ├── Project.toml ├── README.md ├── docs/ │ ├── notebook/ │ │ ├── how-to-plot-a-torus.jl │ │ ├── tutorial-3d.jl │ │ └── tutorial-essentials.jl │ ├── v1/ │ │ ├── 2d-gallery.md │ │ ├── 2dplots.md │ │ ├── 3d-gallery.md │ │ ├── 3dplots.md │ │ ├── api.md │ │ ├── examples.md │ │ ├── extending.md │ │ ├── extguide.md │ │ ├── faq.md │ │ ├── figures.md │ │ ├── index.md │ │ ├── introduction.md │ │ └── plotguide.md │ └── v2/ │ ├── .gitignore │ ├── Project.toml │ ├── _extensions/ │ │ └── jjallaire/ │ │ └── code-visibility/ │ │ ├── _extension.yml │ │ └── code-visibility.lua │ ├── _quarto.yml │ ├── assets/ │ │ ├── cairolatex.tex │ │ ├── lorenz.jl │ │ └── test.tex │ ├── examples.qmd │ ├── index.qmd │ ├── manual.qmd │ ├── migrate.qmd │ ├── recipes.qmd │ ├── reference.qmd │ ├── styles.css │ └── tutorial.qmd ├── src/ │ ├── Gaston.jl │ ├── gaston_aux.jl │ ├── gaston_builtinthemes.jl │ ├── gaston_figures.jl │ ├── gaston_llplot.jl │ ├── gaston_options.jl │ ├── gaston_plot.jl │ └── gaston_recipes.jl └── test/ ├── Project.toml ├── downstream.jl ├── downstream_dev.jl ├── manualtests.txt ├── preferences.jl └── runtests.jl