Metadata-Version: 2.3
Name: mkdocs-slides
Version: 0.1.2
Summary: A MkDocs plugin for creating slide presentations within documentation
License: MIT
Author: Ian Derrington
Author-email: Ian.Derrington@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: PyYAML (>=6.0)
Requires-Dist: click (>=8.0)
Requires-Dist: mkdocs (>=1.4.0)
Requires-Dist: mkdocs-material (>=9.0.0)
Description-Content-Type: text/markdown

# MkDocs Slides Plugin

A plugin for MkDocs that enables beautiful slide presentations within your documentation.

## Installation

```bash
pip install mkdocs-slides
```

## Usage

Add the plugin to your `mkdocs.yml`:

```yaml
plugins:
  - slides
```

Create a slide deck in your markdown:

```yaml
slides
    title: My Presentation
    url_stub: my-pres
    nav:
        - slides/presentation/*.md
```

For full documentation, visit [the plugin documentation](https://ianderrington.github.io/mkdocs_slides/).

## License

This project is licensed under the MIT License - see the LICENSE file for details. 

