Zren / plasma-applet-todolist

https://store.kde.org/p/1152230/
58 stars 23 forks source link

Compatibility with Logseq's MD format #77

Open alxlg opened 2 years ago

alxlg commented 2 years ago

I just tried to use the same .md file in both Logseq (https://logseq.com/) and this applet and it seems a very good combo, but there is a problem: Logseq is an outliner so it forces the "-" at the beginning of a new line while this applet uses the * and only for entries (not titles).

Would it be possible to parse the files but ignoring everything that is not compatible with this applet?

Example of a Logseq file:

- # To-do
    - [x] Done
    - [ ] Undone
- # Something else
  collapsed:: true
    - [ ] example
    - [ ] example

But this applet wants something like this that wouldn't work in Logseq:

# To-do

    * [x] Done
    * [ ] Undone

# Something else

    * [ ] example
    * [ ] example