/plume-docs

Source code for the Plume documentation.

Apache License 2.0Apache-2.0

Plume Documentation

Source code for the Plume documentation. The documentation is run with MkDocs Material.

Getting Started

Install mkdocs with pip3:

sudo apt install python3-pip # if you need pip3
pip3 install mkdocs          # to install mkdocs
pip3 install mkdocs-material # to install mkdocs-material

To run development server, use:

mkdocs serve

Contributing

The only thing to note is that lines are wrapped at 100. This can be configured in VSCode by installing the Rewrap plugin and adding the following configuration:

{
    "[markdown]": {
        "editor.rulers": [100]
    },
    "rewrap.autoWrap.enabled": true,
}