Links
AI / Agents
gdtest-custom-nested-combo
Synthetic package for nested custom page combination coverage.
Nested configured custom pages combined with a user guide and a custom section. Navbar ordering and nested deployed paths should all coexist cleanly.
Source files
apps/
tools/
lab.html
--- title: API Lab layout: passthrough navbar: text: API Lab after: Tutorials --- <section class="api-lab"> <h1>API Lab</h1> <p>Nested custom passthrough page.</p> </section>
gdtest_custom_nested_combo/
__init__.py
"""Test package for nested custom page combinations.""" from .core import render __all__ = ["render"]
core.py
"""Core module for nested custom combination tests."""
def render(topic: str = "lab") -> str:
"""Return a simple label for API generation.
Parameters
----------
topic : str
A topic label.
Returns
-------
str
The rendered topic.
"""
return f"rendered: {topic}"tutorials/
first.qmd
--- title: First Tutorial --- # First Tutorial Tutorial page.
user_guide/
start.qmd
--- title: Start --- # Start Guide start.
README.md
# gdtest-custom-nested-combo Synthetic package for nested custom page combination coverage.
great-docs.yml
sections:
- title: Tutorials
dir: tutorials
navbar_after: User Guide
custom_pages:
dir: apps
output: py