Links
AI / Agents
gdtest-source-disabled
Tests source.enabled: false config.
Tests source.enabled: false. No source code links should appear anywhere in the rendered docs. Two functions (encrypt, decrypt) with NumPy docstrings.
Source files
gdtest_source_disabled/
__init__.py
"""Package testing source.enabled false config."""
__version__ = "0.1.0"
__all__ = ["encrypt", "decrypt"]
def encrypt(text: str, key: str) -> str:
"""
Encrypt text with a key.
Parameters
----------
text
The plaintext to encrypt.
key
The encryption key.
Returns
-------
str
The encrypted text.
"""
return ""
def decrypt(text: str, key: str) -> str:
"""
Decrypt text with a key.
Parameters
----------
text
The ciphertext to decrypt.
key
The decryption key.
Returns
-------
str
The decrypted text.
"""
return ""README.md
# gdtest-source-disabled Tests source.enabled: false config.
great-docs.yml
source: enabled: false