confluence-to-markdown-converter
confluence-to-markdown-converter copied to clipboard
Converts the Confluence storage format to Markdown format.
I've used this tool in a Confluence 3.5 markup to markdown conversion project (cf. https://stackoverflow.com/a/42970887/1523648), and found a few bugs and missing features. I've addressed them in my master branch....
If a title contains a question mark, it tries to create a file on disk with a question mark. I think special characters should be replaced with _ ?
Instead of using the uncommon wiki-style link syntax `[[name|page]]`, use standard relative links `[name](page.md)` Updated all affected samples.
Convert `/` elements to `1.`, `2.`, ... Should be correctly numbered and indented. Depends on pull request #7
It seems that in current versions of Confluence, the storage format and the format shown in "View Source" is no longer well-formed XML. There are no XML declaration, no root...
- Change the line break generation paradigm to make tags generate line breaks before the content instead of after the content. In this way, nested lists are correctly converted. Before...
There is a newline missing before the indented star (` *`) of the first item of the nested list. Example from samples/Jsonix/Features.xml: ``` Provides extensible type system Supports most XML...
Hi there, Some links to internal pages via only title don't appear to parse correctly: ```From , we want to do some stuff:``` FWIW, it renders in Confluence as: ```From Some...