Links
AI / Agents
gdtest-config-sections
Tests sections config for custom page groups.
Tests the sections config for custom page groups. Config defines an ‘Examples’ section pointing to examples/ dir. Two example pages should appear in the sidebar under ‘Examples’.
Source files
examples/
advanced-patterns.qmd
--- title: Advanced Patterns --- ## Advanced Usage This example demonstrates advanced patterns.
basic-usage.qmd
--- title: Basic Usage --- ## Getting Started This example shows basic usage of the library.
gdtest_config_sections/
__init__.py
"""Package testing sections config."""
__version__ = "0.1.0"
__all__ = ["transform", "validate"]
def transform(data: list) -> list:
"""
Transform a list of data items.
Parameters
----------
data
The input data to transform.
Returns
-------
list
The transformed data.
"""
return data
def validate(data: list) -> bool:
"""
Validate a list of data items.
Parameters
----------
data
The input data to validate.
Returns
-------
bool
True if the data is valid.
"""
return TrueREADME.md
# gdtest-config-sections Tests sections config for custom page groups.
great-docs.yml
sections:
- title: Examples
dir: examples