I always advocate for XML. While Markdown is like "a car in any color as long as it's black", XML is a) exactly what you need and b) as precise as you need it, and also c) not more precise than necessary. We all need headers and paragraphs, right. But I might want file listings. Or command-line snippets with my own color coding and marks. Or C declarations and precise references to them in text. Or todos. Or bibliogr…
Why are we still using Markdown?
311–320 of 328 posts
Re: Why are we still using Markdown?
#312I strongly dislike flexible input like __Unambiguous___, *Unambiguous* I’m reminded of the time Microsoft allowed mistakes in html writing. They attempted to parse a wide variety of common user errors. The effect of this was no standard and nobody else able to write a Microsoft compatible parser. I dislike Nim lang because of this. At least Nim defined the specification. Still though I think it creates more cognitive…
Re: Why are we still using Markdown?
#313Markdown is for us humans. HTML is for machines. Per keyboard stroke, you write much more content with MD than HTML. Even without a specific browser/reader Markdown is relatively non-intrusive to read. You cant read HTML without an extra tool/effort to discard tags. And you can parse MD with regular expressions, or can you? ;). (tip hat to infamous Stackoverflow discussion)
If HTML were for machines it would be a binary format. It's text so it's meant for humans to read and write, and humans did both for years without it being a problem.
Re: Why are we still using Markdown?
#314Markdown is essentially plain text with a couple extra features. I think Markdown’s basic appeal is that it’s plain text.
That applies to XML, AsciiDoc, LaTex, ReStructuredText, and all the others as well. Apparent simplicity seems to be the most appealing factor, IMHO.
Re: Why are we still using Markdown?
#315I'd like to see a less flexible markdown standard. There's no reason to have 2 different ways of italics/bold etc. Pick one, reject other text.
Re: Why are we still using Markdown?
#316> These 2 produce IDENTICAL output. And this is just the tip of the iceberg? > It has so many poor decisions baked in that if you try to use it it will actively fight against you the moment you think you know what you’re doing. That misses the point. The point of Markdown is simplicity, not perfection. And that is also the reason why Markdown will prevail.
This also misses the point: multiple syntax markers for the same thing is the opposite of simplicity (though that's not the reason why Markdown will fail)
Re: Why are we still using Markdown?
#317Earlier quoted context omitted.
Interestingly, you can also choose not to say it on your own blog.
Why the heck would you use the phrase "Why the heck" in any circumstance other than to avoid censorship/algorithmic penality on a social media platform?
Re: Why are we still using Markdown?
#318Re: Why are we still using Markdown?
#319Earlier quoted context omitted.
Saying, that it is the best compromise we know of is going a little far, I think. There are more readable intuitive formats, but they simply don't have the spread, that markdown formats have.
Why do you think that is?
(1) I can never remember, whether I need to use [] or () first, when embedding an image. In Org mode syntax one simply uses [] for both parts.
(2) Or whether ** is bold or italic or * is bold or italic. Other formats use the well known / to mean italic, which optically already makes more sense and also doesn't interfere with something being bold or not, because it is a separate symbol. This makes Markdown also harder to parse btw..Re: Why are we still using Markdown?
#320Earlier quoted context omitted.
markdown tried very hard to encode conventions that were already used in Usenet, email, and other text media For those of you who weren't there: *bold* _underline_ ~strikethrough~ /italics/ > Quotation - list - list - list I've been using these for almost half a century. They're much easier and more intuitive than Markdown. I see no compelling reason to change.
Yeah, * asterisks * for italic has always felt wrong to me. I can understand underscores if slashes cause confusion with file paths. *bold* and _italic_ would have been better.