CrossNox / m2r2

Markdown to reStructuredText converter
https://crossnox.github.io/m2r2
MIT License
107 stars 26 forks source link

[Bug] Unexpected `\ ` in output #70

Open msyyc opened 1 month ago

msyyc commented 1 month ago

When I try to convert the following .md string, there is some unexpected \ in convert result:

import m2r2

description = [
    "When `createMode` is set to `recover`, skip it",
    "Local Inbound profile names to which Inbound is allowed. Use ['*'] to allow inbound to all profiles. It's default value is ['*'].",
]
for item in description:
    print(m2r2.convert(item).strip())

image