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 01c91fb commit b212465Copy full SHA for b212465
quartodoc/autosummary.py
@@ -87,8 +87,6 @@ def get_object(
87
dynamic: bool
88
Whether to dynamically import object. Useful if docstring is not hard-coded,
89
but was set on object by running python code.
90
- modules_collection: optional
91
- A griffe [](`~griffe.collections.ModulesCollection`), used to hold loaded modules.
92
93
See Also
94
--------
@@ -521,7 +519,7 @@ def from_quarto_config(cls, quarto_cfg: "str | dict"):
521
519
quarto_cfg = yaml.safe_load(open(quarto_cfg))
522
520
523
cfg = quarto_cfg["quartodoc"]
524
- style = cfg["style"]
+ style = cfg.get("style", "pkgdown")
525
526
cls_builder = cls._registry[style]
527
0 commit comments