From 4da8abb1c6e2d47329637c6100c3fe40409ec275 Mon Sep 17 00:00:00 2001 From: "james.balamuta@gmail.com" Date: Mon, 2 Dec 2024 11:15:38 -0800 Subject: [PATCH] Create a template --- .quartoignore | 1 + stamp.code-workspace | 8 ++++++++ template.qmd | 28 ++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 .quartoignore create mode 100644 stamp.code-workspace create mode 100644 template.qmd diff --git a/.quartoignore b/.quartoignore new file mode 100644 index 0000000..96c0ecc --- /dev/null +++ b/.quartoignore @@ -0,0 +1 @@ +docs/ \ No newline at end of file diff --git a/stamp.code-workspace b/stamp.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/stamp.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/template.qmd b/template.qmd new file mode 100644 index 0000000..19fe640 --- /dev/null +++ b/template.qmd @@ -0,0 +1,28 @@ +--- +title: "Stamp Example" +stamp: + level: minimal # Show bare minimum sections + placement: custom # Place in custom location + placement-id: a-stamp-id # Custom placement ID +filters: + - stamp +--- + +For this document, we demonstrate how to use the `{quarto-stamp}` extension to add information regarding how Quarto rendered the document to the document itself. + +We're using the following options: + +- `level: minimal` to show only the bare minimum sections +- `placement: custom` to place the stamp anywhere in the document +- `placement-id: a-stamp-id` to specify a custom placement ID + +# A section before the stamp + +Content before the stamp. + +:::{#a-stamp-id} +::: + +# Another section after the stamp + +Extra content after the stamp. \ No newline at end of file