dba633cccf
Now the whole logic is wrapped by `try`, so if plugin is failed, it won't break the whole build Also, there were several changes - Add header_message, so header_warning is still there ("‼️ This page is created automatically, all your changes will be overwritten during the next MKDocs deployment. Do not edit a page here ‼️") when you want to add a custom message - Add upstream_url, so now there is a link to the original page, if it's provided - Migrate to default python logging lib Co-authored-by: Nikolai Rodionov <nikolai.rodionov@grandcentrix.net> Reviewed-on: https://git.badhouseplants.net/allanger/mkdocs-with-confluence/pulls/6
23 lines
630 B
TOML
23 lines
630 B
TOML
[tool.poetry]
|
|
name = "mkdocs-with-confluence"
|
|
version = "0.3.1"
|
|
description = "MkDocs plugin for uploading markdown documentation to Confluence via Confluence REST API"
|
|
authors = ["Nikolai Rodionov <allanger@zohomail.com>"]
|
|
readme = "README.md"
|
|
packages = [{include = "mkdocs_with_confluence/plugin.py"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
poetry = "^1.3.2"
|
|
poetry2setup = "^1.1.0"
|
|
md2cf = "^2.0.1"
|
|
loguru = "^0.6.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.plugins."mkdocs.plugins"]
|
|
mkdocs-with-confluence = 'mkdocs_with_confluence.plugin:MkdocsWithConfluence'
|