markdown-to-confluence
markdown-to-confluence copied to clipboard
Syncs Markdown files to Confluence
When trying to use the Docker image, the requirements fail to install because of a dependency issue between the versions of urllib3 and requests: > [5/6] RUN pip install --no-cache-dir...
Bumps [mistune](https://github.com/lepture/mistune) from 0.8.4 to 2.0.3. Release notes Sourced from mistune's releases. Version 2.0.2 Fix escape_url via lepture/mistune#295 Version 2.0.1 Fix XSS for image link syntax. Version 2.0.0 First release...
It would be more simple to use this library if it was deployed on the official pypi repository. This would allow me to simply call pip install markdown-to-confluence in a...
When I run with --dry-run the _create and _update methods fail https://github.com/duo-labs/markdown-to-confluence/blob/8ce8d5d788981f5cab02122d0177ab56d8a3e8e2/confluence.py#L107 returns {} The following expects: https://github.com/duo-labs/markdown-to-confluence/blob/8ce8d5d788981f5cab02122d0177ab56d8a3e8e2/confluence.py#L323 https://github.com/duo-labs/markdown-to-confluence/blob/8ce8d5d788981f5cab02122d0177ab56d8a3e8e2/confluence.py#L324 and https://github.com/duo-labs/markdown-to-confluence/blob/8ce8d5d788981f5cab02122d0177ab56d8a3e8e2/confluence.py#L401 Expect the id and _links key to exist
When running the script in a local git repo with all MD files stored in `docs/`I get the error `raise InvalidGitRepositoryError(epath)` To solve this, I added `search_parent_directories=True` to the `Repo`...
Please refer to the screen for python in virtual environment. I have tried with both 3.8 and 3.9 Getting error with ModuleNotFoundError, even though it is installed. 
Close #22 `requests 2.22.0 requires urllib3!=1.25.0,!=1.25.1,=1.21.1, but you'll have urllib3 1.26.5 which is incompatible.` [request 2.25.0](https://github.com/psf/requests/pull/5651/files) updated the dependency on `urllib3` ## Notes before ``` pip install -r requirements.txt Collecting...
Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.37 to 3.1.41. Release notes Sourced from gitpython's releases. 3.1.41 - fix Windows security issue The details about the Windows security issue can be found in this...
Need to use this, but have no need in Authors or ToC. Is there an option to disable those sections? I could not find that, maybe add it as a...
MR https://github.com/duo-labs/markdown-to-confluence/pull/21 broke `convert.py`. This is because mistune in versions 2.0.0+ no longer has a `Renderer` object, which this code tries to use. To fix, we need to either: -...