### Install Typogrify Source: https://github.com/justinmayer/typogrify/blob/main/README.md Install the Typogrify package using pip. Ensure you use the correct package name. ```bash python -m pip install typogrify ``` -------------------------------- ### Run Development Setup Source: https://github.com/justinmayer/typogrify/blob/main/README.md Set up the development environment by syncing dependencies and running the setup command using uv and invoke. ```bash uv sync --all-groups uv run invoke setup ``` -------------------------------- ### Run Typogrify Linting Source: https://github.com/justinmayer/typogrify/blob/main/README.md Check code style guidelines for Typogrify using the invoke lint command. ```bash uv run invoke lint ``` -------------------------------- ### Run Typogrify Tests Source: https://github.com/justinmayer/typogrify/blob/main/README.md Execute the test suite for Typogrify using the invoke command. ```bash uv run invoke tests ``` -------------------------------- ### Import and Use Typogrify Filter Source: https://github.com/justinmayer/typogrify/blob/main/README.md Import the main typogrify filter from typogrify.filters and apply it to your content string. ```python from typogrify.filters import typogrify content = typogrify(content) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.