Links
AI / Agents
gdtest-md-disabled
Tests markdown_pages: false config. No .md files should be generated and the copy-page widget should not appear.
Source files
gdtest_md_disabled/
__init__.py
"""Package testing markdown_pages false config."""
__version__ = "0.1.0"
__all__ = ["compute", "validate"]
def compute(x: int, y: int) -> int:
"""
Compute the sum of two integers.
Parameters
----------
x
First operand.
y
Second operand.
Returns
-------
int
The sum of x and y.
"""
return x + y
def validate(value: str) -> bool:
"""
Validate a string value.
Parameters
----------
value
The string to validate.
Returns
-------
bool
True if the value is non-empty.
"""
return bool(value)README.md
# gdtest-md-disabled Tests markdown_pages: false config. No .md files should be generated and the copy-page widget should not appear.
great-docs.yml
markdown_pages: false