confluence-to-markdown-converter
confluence-to-markdown-converter copied to clipboard
Question marks breaking the tooling
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 _ ?
Same for & btw.
Making this change in Page.coffee:
@heading.replace(/[\s\\/()]/g, '_').replace('?', '_').replace('&', '_') + '.md'