Metadata-Version: 2.1
Name: mkdocs-conia
Version: 0.1.2
Summary: Default mkdocs theme for Conia projects
Home-page: https://github.com/coniadev/mkdocs-conia
Author: ebene fünf GmbH
Author-email: conia@ebenefuenf.de
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: mkdocs-macros-plugin (>=0.7)
Requires-Dist: mkdocs (>=1.3)

MkDocs Conia Theme
==================

This is a theme for MkDocs which is mainly used in [Conia](https://conia.dev) projects 

## Installation

Install the package from PyPi using `pip`:

    pip install mkdocs-conia

Add the theme to your `mkdocs.yml` file:

    theme:
        name: conia

## Styles

Install Dart Sass via `npm install -g sass`. During develompment:

    sass --watch styles:theme

## Deploy to PyPi

Install `twine` if not already done. Bump version number in `setup.py`, then:

    git tag -a vX.X.X -m "Version X.X.X"
    git push origin vX.X.X
    sass --style=compressed styles:theme
    python setup.py bdist_wheel
    twine upload dist/*


