A Mkdocs package that contains TechDocs defaults
Project description
techdocs-core
This is the base Mkdocs plugin used when using Mkdocs with Spotify's TechDocs. It is written in Python and packages all of our Mkdocs defaults, such as theming, plugins, etc in a single plugin.
Usage
$ pip install mkdocs-techdocs-core
Once you have installed the mkdocs-techdocs-core
plugin, you'll need to add it to your mkdocs.yml
.
site_name: Backstage Docs
nav:
- Home: index.md
- Developing a Plugin: developing-a-plugin.md
plugins:
- techdocs-core
Running Locally
You can install this package locally using pip
and the --editable
flag used for making developing Python packages.
pip install --editable .
You'll then have the techdocs-core
package available to use in Mkdocs and pip
will point the dependency to this folder.
Running with Docker
In the parent Dockerfile
we add this folder to the build and install the package locally in the container. In the future, we'll probably move away from this approach and have it download directly from a Python registry (and this folder will publish to one).
See the README.md
located in the techdocs-container/
folder for more details on how to build and run the Docker container.
Linting
pip install -r requirements.txt
python -m black src/
Note: This will write to all Python files in src/
with the formatted code. If you would like to only check to see if it passes, simply append the --check
flag.
MkDocs plugins and extensions
The TechDocs Core MkDocs plugin comes with a set of extensions and plugins that mkdocs supports. Below you can find a list of all extensions and plugins that are included in the TechDocs Core plugin:
Plugins:
Extensions:
- admonition
- toc
- pymdown
- caret
- critic
- details
- emoji
- superfences
- inlinehilite
- magiclink
- mark
- smartsymobls
- highlight
- extra
- tabbed
- tasklist
- tilde
- markdown_inline_graphviz
- plantuml_markdown
Changelog
0.0.11
- Any MkDocs plugin configurations from mkdocs.yml will now work and override the default configuration. See https://github.com/spotify/backstage/issues/3017
0.0.10
- Pin Markdown version to fix issue with Graphviz
0.0.9
- Change development status to 3 - Alpha
0.0.8
- Superfences and Codehilite doesn't work very well together (squidfunk/mkdocs-material#1604) so therefore the codehilite extension is replaced by pymdownx.highlight
- Uses pymdownx extensions v.7.1 instead of 8.0.0 to allow legacy_tab_classes config. This makes the techdocs core plugin compatible with the usage of tabs for grouping markdown with the following syntax:
```java tab="java 2"
public void function() {
....
}
```
as well as the new
=== "Java"
```java
public void function() {
....
}
```
The pymdownx extension will be bumped too 8.0.0 in the near future.
-
pymdownx.tabbed is added to support tabs to group markdown content, such as codeblocks.
-
"PyMdown Extensions includes three extensions that are meant to replace their counterpart in the default Python Markdown extensions." Therefore some extensions has been taken away in this version that comes by default from pymdownx.extra which is added now (https://facelessuser.github.io/pymdown-extensions/usage_notes/#incompatible-extensions)
0.0.7
- Fix an issue with configuration of emoji support
0.0.6
- Further adjustments to versions to find ones that are compatible
0.0.5
- Downgrade some versions of markdown extensions to versions that are more stable
0.0.4
- Added support for more mkdocs extensions
- mkdocs-material
- mkdocs-monorepo-plugin
- plantuml-markdown
- markdown_inline_graphviz_extension
- pygments
- pymdown-extensions
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mkdocs-techdocs-core-0.0.11.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6697dfcfd27003bbca7480cd1a10ff793812dcdcfecfd0ef9558f851681544a |
|
MD5 | f8491e751f7cf47bdb278cd741a32998 |
|
BLAKE2b-256 | dff52079159148c3433982669e3561676cea006c02d9da310a99bb76671ab59b |
Hashes for mkdocs_techdocs_core-0.0.11-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c792df2557e29090610018b5227dd6665072166d543c640523e5a0f887a36aab |
|
MD5 | a8e70c8ec63e714db3bb0034792e105a |
|
BLAKE2b-256 | ad6c9210e8f8b8ebce5d8e30dce40b7d3750d0ee8c0c85648bb015e51ff0ba62 |