plume-oss / plume-docs

Source code for the Plume documentation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Plume Documentation

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

Getting Started

Install mkdocs with pip3:

pip3 install mkdocs          # to install mkdocs
pip3 install mkdocs-material # to install mkdocs-material

or with conda (ARM friendly):

conda install mkdocs          # to install mkdocs
conda 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,
}

About

Source code for the Plume documentation.

License:Apache License 2.0