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