mkdocs-with-confluence/README.md

54 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2021-04-14 20:58:06 +00:00
# mkdocs-with-confluence
MkDocs plugin that converts markdown pages into confluence markup
and export it to the Confluence page
# How to use
To enable plugin, you need to set the `MKDOCS_TO_CONFLUENCE` environment variable.
```BASH
export MKDOCS_TO_CONFLUENCE=1
```
2023-02-24 16:39:55 +00:00
By default the dry-run mode is turned off. If you wan't to enable it, you can use the config file, ot the `MKDOCS_TO_CONFLUENCE_DRY_RUN` environment variable
2023-02-24 16:39:55 +00:00
```BASH
export MKDOCS_TO_CONFLUENCE_DRY_RUN=1
```
2021-04-14 20:58:06 +00:00
## Setup
Install the plugin using pip:
2023-02-24 16:39:55 +00:00
`pip install https://github.com/allanger/mkdocs-with-confluence/releases/download/v0.3.1/mkdocs_with_confluence-0.3.1.tar.gz`
2021-04-14 20:58:06 +00:00
Activate the plugin in `mkdocs.yml`:
```yaml
plugins:
- mkdocs-with-confluence
```
2021-05-30 18:32:35 +00:00
More information about plugins in the [MkDocs documentation: mkdocs-plugins](https://www.mkdocs.org/user-guide/plugins/).
2021-04-14 20:58:06 +00:00
## Usage
Use following config and adjust it according to your needs:
```yaml
- mkdocs-with-confluence:
host_url: https://<YOUR_CONFLUENCE_DOMAIN>/rest/api/content
space: <YOUR_SPACE>
parent_page_name: <YOUR_ROOT_PARENT_PAGE>
2023-02-24 16:39:55 +00:00
username: <YOUR_USERNAME_TO_CONFLUENCE> # JIRA_USERNAME env var can be used
password: <YOUR_PASSWORD_TO_CONFLUENCE> # JIRA_PASSWORD env var can be used
dryrun: true # MKDOCS_TO_CONFLUENCE_DRY_RUN env var can be used
header_message: <A_MESSAGE_THAT_WILL_BE_ADDED_TO_EVERY_PAGE>
2023-02-24 16:41:10 +00:00
upstream_url: <URL_OF_YOUR_MKDOCS_INSTANCE>
2023-02-24 16:39:55 +00:00
header_warning: "‼️ This page is created automatically, all you changes will be overwritten during the next MKDocs deployment. Do not edit a page here ‼️"
2021-04-14 20:58:06 +00:00
2023-02-24 16:39:55 +00:00
```
2021-04-14 20:58:06 +00:00
### Requirements
- md2cf
- mimetypes
- mistune