#41·anydoc

docx to md puts a backslash between number and period in ordered lists

Author: shakfuCreated Aug 6, 2026Updated Sep 2, 2026
Labelsquestionneeds-repro

Just tried a docx to md conversion with the python bindings. Everything worked as it should except for ordered list:

1\. ...
2\. ...
..

had to be changed manually to:

1. ...
2. ...
..