top | item 46569345

(no title)

maximus-decimus | 1 month ago

org-mode is just much more complicated to implement though and just contains so much. it's also a todo app. It also lets you run code like a python notebook. it can show you your tasks in a calendar.

I've used "org-mode" todo apps on android, but people complain they can't really use it because it doesn't implement everything.

The advantage of the core markdown syntax is that you know it works everywhere and it works everywhere because it's small and easy to implement.

discuss

order

internet_points|1 month ago

I think the implementation challenge is the reasoning behind https://karl-voit.at/2021/11/27/orgdown/ So you can say "my org-mode parser implements orgdown level 1" meaning it has the basics. I think it sounds like a pretty good idea, though it's kind of a third party effort – it'd be better if there were some officially sanctioned compatibility level standard from the orgmode authors.

lelanthran|1 month ago

> org-mode is just much more complicated to implement though and just contains so much.

So just implement the features it has in common with Markdown and add the rest as and when people ask for them.

For me, org-mode syntax is just that much more intuitive than Markdown. I sometimes feel that when devs invent something (Markdown, YAML, etc), they really should do 5 minutes of research before inventing their thing.

Markdown should have used all the org-mode syntax for the the features they wanted.

setopt|1 month ago

Markdown was based on the "syntax" already being used informally in emails and on IRC. So the author did do some searching to define the syntax.

I don’t like many parts of markdown either (like the syntax for bold), but those were also IIRC already being parsed by some IRC clients before Markdown was specified.