-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
67 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,6 @@ Manifest.toml | |
|
||
# As should .vscode! | ||
.vscode | ||
|
||
# Python virtual environments | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
build/ | ||
site/ | ||
.quarto | ||
/.quarto/ | ||
venv | ||
_book | ||
_site | ||
_manuscript | ||
*.html | ||
.quarto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
[deps] | ||
AstrodynamicalModels = "4282b555-f590-4262-b575-3e516e1493a7" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Quarto = "d7167be5-f61b-4dc9-b75c-ab62374668c5" | ||
QuartoDocumenter = "73f83fcb-c367-40db-89b6-8fd94701aaf2" |
This file was deleted.
Oops, something went wrong.
150 changes: 0 additions & 150 deletions
150
docs/_extensions/quarto-ext/latex-environment/latex-environment.lua
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,40 @@ | ||
project: | ||
type: book | ||
type: website | ||
|
||
book: | ||
title: "Doc" | ||
author: "Norah Jones" | ||
date: "4/7/2024" | ||
chapters: | ||
- index.qmd | ||
- intro.qmd | ||
- summary.qmd | ||
- references.qmd | ||
website: | ||
title: "QuartoDocumenter.jl" | ||
bread-crumbs: false | ||
navbar: | ||
left: | ||
- href: index.qmd | ||
text: Home | ||
sidebar: | ||
search: true | ||
contents: | ||
- section: "Overview" | ||
contents: | ||
- index.qmd | ||
- section: "Examples" | ||
contents: | ||
- examples/index.qmd | ||
- section: "Reference" | ||
contents: | ||
- reference/index.qmd | ||
|
||
bibliography: references.bib | ||
execute: | ||
cache: false | ||
freeze: false | ||
echo: true | ||
output: true | ||
warning: false | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
pdf: | ||
documentclass: article | ||
shift-heading-level-by: 1 | ||
theme: | ||
light: lightly | ||
dark: darkly | ||
css: styles.css | ||
toc: true | ||
|
||
|
||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
# Preface {.unnumbered} | ||
--- | ||
title: "QuartoDocumenter.jl" | ||
sidebar: true | ||
--- | ||
|
||
This is a Quarto book. | ||
This is a Quarto website. | ||
|
||
To learn more about Quarto books visit <https://quarto.org/docs/books>. | ||
|
||
|
||
```{julia} | ||
using QuartoDocumenter, AstrodynamicalModels | ||
QuartoDocumenter.autodoc(AstrodynamicalModels) | ||
``` | ||
To learn more about Quarto websites visit <https://quarto.org/docs/websites>. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Quarto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Reference | ||
|
||
```{julia} | ||
#| echo: false | ||
using QuartoDocumenter, AstrodynamicalModels | ||
QuartoDocumenter.autodoc(AstrodynamicalModels) | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* css styles */ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters