generated from coatless-devcontainer/quarto-extension-dev
-
-
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
3 changed files
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
docs/ |
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,8 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
], | ||
"settings": {} | ||
} |
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,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. |