Remix.run Logo
rkp8000 a day ago

I love Markdown. I'm a bit surprised, though, that you still can't open a .md file by default in most web browsers. It seems like it should be quite trivial to have the browser automatically convert it to html and display it.

VerifiedReports a day ago | parent | next [-]

As I was griping above, you usually can't just view a Markdown file with formatting applied at all. I think MAYBE Notepad has been updated just recently to render it, but otherwise... you're looking at plain text with a bunch of formatting characters in it. Why? It's baffling. Where are the simple Markdown READERS?

happyopossum a day ago | parent [-]

Your plain text editor is the markdown reader. That’s the point.

VerifiedReports an hour ago | parent | next [-]

Then that's no point at all. You're not seeing the formatting that the embedded formatting characters call for, so why have them in there?

nullhole a day ago | parent | prev | next [-]

It really would be nice to have a convenient renderer for it though. It's genuinely surprising something like firefox doesn't have a markdown reader builtin already.

matijsvzuijlen 19 hours ago | parent | next [-]

I wrote one for my own use (on Linux): https://github.com/mvz/mdv

jdechko a day ago | parent | prev [-]

If you’re on a Mac, I recommend qlmarkdown. It’s a customizable quick look renderer for markdown (md) files.

https://github.com/sbarex/QLMarkdown

nacozarina 18 hours ago | parent | prev [-]

and it looks like poo, that’s the other point

VerifiedReports an hour ago | parent [-]

Exactly. You can always count on someone to come back with, "That's why it's so great! You just read it in a plain-text editor!"

Why does anyone have to point out how dumb it is to litter your "plain text" file with formatting characters that are never respected?

xigoi 20 hours ago | parent | prev | next [-]

That would require Markdown to be standardized. (There is the CommonMark standard, but it’s extremely complex and still ambiguous.)

cdmckay 20 hours ago | parent | next [-]

You could still support a subset of the most common features like bold, italic, strike, bullets, links, etc.

Isn’t the beauty of MD supposed to be that if you can’t render it it should still look fine as plaintext?

xigoi 19 hours ago | parent | next [-]

Even these basics are not consistent. See my Markdown Monster:

https://git.sr.ht/~xigoi/markdown-monster/blob/master/monste...

inopinatus 18 hours ago | parent | prev [-]

The problem for web browsers is that markdown is technically a superset of HTML.

bborud 15 hours ago | parent | next [-]

Why is this a problem? To me it sounds like a it would be an advantage because you have everything you need to render it already built into the software.

inopinatus 10 hours ago | parent [-]

Rendering is trivial. The issue is standards, and the DOM. No-one can write a Markdown implementation for the core of any major web browser in a form that is simultaneously acceptable to both their technical and political governance.

Best you’ll get is a plugin. Strictly arm’s reach. Translation only.

pwdisswordfishy 15 hours ago | parent | prev [-]

Why is it a problem for web browsers?

bborud 15 hours ago | parent | prev [-]

I don't think so. I think it would be sufficient to document the exact markdown it supports and let the chips fall where they may. Yes, it would push markdown in a certain direction, but that's OK as long as it stays faithful to some variant most people already know. For instance whatever variant Github or some other major, main stream tool uses. And then just ignore the critics.

It'll certainly make some people angry, but if we try to please everyone we can't get anything done. And I suspect that it is the fear of not being able to please everyone that is the reason browsers do not have markdown support. It takes a bit of courage to say "this is the variant we'll implement".

HTML was originally said to be an application of SGML. It wasn't. It was vaguely inspired by its syntax and that is the only reason HTML saw wide adoption. Had they tried to actually implement anything close to ISO 8879:1986 we would NOT have adopted HTML for the web. Mostly because it would have been too costly to implement. (Anyone doubting that: have a look at the ISO standard. You can get it in what is essentially annotated form in Charles Goldfarb's "The HTML Handbook").

Of course, Markdown is nowhere near as complex. So this is where perfect is the enemy of good and we end up getting nothing.

wernsey 12 hours ago | parent | prev | next [-]

I've taken to using Markdeep [1] for this.

You write your markdown file, but add the code snippet at the bottom of yor document and save it with a .md.html extension. Then when you double-click it it opens and renders in your browser.

I save my notes in a Google Drive, and it's now replaced all the note taking apps I've tried over the years

[1] https://casual-effects.com/markdeep/

anildash a day ago | parent | prev | next [-]

This is a good call. I know it's been suggested multiple times over the years; I wonder what the rationale was for rejecting the format, or at least having the option to render a file when it's loaded. (Maybe a "display as HTML" button or the like would be required before it would be rendered.)

chrismorgan 20 hours ago | parent [-]

“Markdown” is a family of writing formats. There is no one “Markdown”. It’s completely unsuitable for direct inclusion in the web platform.

Related reading: https://www.rfc-editor.org/rfc/rfc7763.html text/markdown registration.

Ringz 20 hours ago | parent [-]

The overlap between these Markdown formats is actually larger than with many other formats. Possibly even larger than HTML’s overlap back when MS Explorer was the dominant browser.

chrismorgan 14 hours ago | parent [-]

> Possibly even larger than HTML’s overlap back when MS Explorer was the dominant browser.

No way. You were never left in doubt about whether a normal HTML tag would work, or whether tables were available or would become a jumbled illegible mess, or whether a line break in the source would become a space or a hard break. And that’s just the first three things that occur to me.

embedding-shape a day ago | parent | prev [-]

Yeah, also missing a built-in JS API for turning Markdown into safe HTML. Sure, there are lots of different implementations, but maybe start with something small at least.