Skip to content

Commit

Permalink
Create a template
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Dec 2, 2024
1 parent e47822e commit 4da8abb
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .quartoignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/
8 changes: 8 additions & 0 deletions stamp.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
28 changes: 28 additions & 0 deletions template.qmd
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 4da8abb

Please sign in to comment.