markdown2zim icon indicating copy to clipboard operation
markdown2zim copied to clipboard

Checkboxes `[ ]` stay are not prepended with hyphen `- [ ]`

Open hsandt opened this issue 1 year ago • 0 comments

Checkboxes [ ] stay are not prepended with hyphen - [ ] (same for variants [x], etc.), so they just appear as normal [ ] characters in standard Markdown editors.

In comparison, native Markdown (pandoc) export adds hyphens.

[ ] TODO
[*] DONE
[x] FAILED

Zim to Markdown gives:

[ ] TODO
[*] DONE
[x] FAILED

Expected:

- [ ] TODO
- [*] DONE
- [x] FAILED

hsandt avatar Jul 20 '24 14:07 hsandt