wormi4ok / evernote2md

Convert Evernote .enex files to Markdown

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

To-do lists can't be conveted properly

weijianzz opened this issue · comments

Hi Stanislav, i found that To-do lists can't be conveted properly.

Context
below is to-do lists in my evernote notes.
image
Here is the convted result in markdown files.
image

Solution
The proper result maybe be this pic.
image

Hey! Thanks for the request.

That's expected since Evernote uses a custom <en-todo> tag to render to-do list items. I already have a similar conversion rule implemented, not sure yet if it's going to work well with list tags around.

Rendering * in front of the checkbox could cause issues in some Markdown editors, I guess. For me, a clean to-do list in markdown should look like this, but it's gonna be tricky to remove * symbols already rendered before.

[x] First
[x] Second
[ ] Apple
[ ] Banana

Maybe someone can validate my assumptions?

Hey!

This format looks concise, but maybe cannot be recognized by mainstrean markdown software. Could the - or + symbols solve the issues caused by the rendering * in front of the checkboxs ?