-
TL;DRI would like to create a quarto extension custom format, and provide the user with a starter template.qmd to start out. However, upon installation ( DescriptionThe command
If I distribute this extension via GitHub (https://github.com/ratnanil/quarto-text-extension) I can install the extension (
As you can see, template.qmd is missing. How can |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @ratnanil, users of your Quarto extension must install the extension and the template separate. quarto install extension ratnanil/quarto-text-extension
quarto use template ratnanil/quarto-text-extension |
Beta Was this translation helpful? Give feedback.
-
🤦🏼 thanks for your answer, that makes a lot of sense. |
Beta Was this translation helpful? Give feedback.
You don't have to do the two.
quarto use
will install the extension and copy the root files such as the "template.qmd" in your empty project.If you want to use a template do
quarto use
, if you want the extension but not the template, doquarto add
(quarto install extension
is the old API).See the documentation: