We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c11f4 commit efa76e6Copy full SHA for efa76e6
quartodoc/builder/blueprint.py
@@ -9,6 +9,7 @@
9
from griffe.collections import ModulesCollection, LinesCollection
10
from griffe.docstrings.parsers import Parser
11
from functools import partial
12
+from textwrap import indent
13
14
from plum import dispatch
15
@@ -163,7 +164,10 @@ def enter(self, el: Layout):
163
164
print(
165
"Use the following configuration to recreate the automatically",
166
" generated site:\n\n\n",
- yaml.safe_dump(_to_simple_dict(new_el)),
167
+ "quartodoc:\n",
168
+ indent(
169
+ yaml.safe_dump(_to_simple_dict(new_el), sort_keys=False), " " * 2
170
+ ),
171
"\n",
172
sep="",
173
)
0 commit comments