Links
AI / Agents
gdtest-header-text
Test include_in_header string config
Installation
pip install gdtest-header-textGet Started
- API Reference — Full API documentation
Source files
gdtest_header_text/
__init__.py
"""Package testing include_in_header with a string."""
__version__ = "0.1.0"
__all__ = ["add", "multiply"]
def add(a: int, b: int) -> int:
"""
Add two numbers.
Parameters
----------
a
First number.
b
Second number.
Returns
-------
int
Sum.
"""
return a + b
def multiply(a: int, b: int) -> int:
"""
Multiply two numbers.
Parameters
----------
a
First number.
b
Second number.
Returns
-------
int
Product.
"""
return a * bgreat-docs.yml
include_in_header: "<meta name=\"gd-custom-test\" content=\"header-text-injected\">"