Metadata-Version: 2.4
Name: mk-append-to-head
Version: 0.0.1
Summary: Append some string to a MkDocs page's <head>.
Author-email: Marcelão Dev <marcelobcortes@hotmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/marcelaodev/mk-append-to-head
Project-URL: Issues, https://github.com/marcelaodev/mk-append-to-head/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mk-append-to-head
Append some string to a MkDocs page's &lt;head>.

## Installation

```bash
pip install mk-append-to-head
```

## Configuration

In MkDocs configuration file:

```yaml title="mkdocs.yml"
plugins:
- mk-append-to-head:
    append_str: <script>console.log(1)</script>
    pages: ['Home'] # optional
```

Leaving `pages` empty will append the `append_str` to all pages.
