Live data from Hacker News

I Blog with Raw HTML

devpoga.org

91–100 of 137 posts

Re: I Blog with Raw HTML

#91
As others mention its not raw HTML, but also the browser is applying styles of it's own - you can't get away from that. Isn't that reason we have CSSS resets so we have a baseline starting point that other browsers have forced upon us.

How long ago were the default CSS rules set for a browser. They should probably change.

Re: I Blog with Raw HTML

#93
Lmao no you don't, you use a little HTML to load JavaScript to render Markdown.

Here's how you write a blog with raw HTML:

1. Write some HTML to a file. (No loading third-party JavaScript.)

2. Host that file.

That's it, that's the whole thing.

Re: I Blog with Raw HTML

#94
Is this a parody of something?

"raw html" that does not work without JS (I mean literally, links are not links without JS), but on the other hand looks ugly even if 10 lines of CSS would make it look nice

Re: I Blog with Raw HTML

#95
post #65

I don't know what I'm more offended by, the implication that writing 'raw' HTML is some noteworthy retro skill, or the fact the blog isn't actually written in raw HTML at all, but in Markdown.

Apparently "raw HTML" now means "just enough HTML to load a Markdown renderer into a JavaScript virtual machine". Amazing.

Re: I Blog with Raw HTML

#96
post #52

Earlier quoted context omitted.

I used wintersmith.io. At some point it was abandoned and eventually the node version needed was old and other stuff associated with it. It became a hassle.

Writing raw html and wiring it yourself is a hassle, how is not upgrading node a bigger one? Besides there are SSGs that are a single binary

I promise you, HTML is not a hassle... It's markup. You describe the page, and then... you're done. And if you don't use weird, niche tags, it'll work basically forever.

Re: I Blog with Raw HTML

#98

I used to blog with raw html. In 1999 when I was 12. It sucked. There is a reason why we use things like markdown now. Still, you kids should definitely dig into the fundamentals at least one time and write raw html. Just don't stay there and pretend it's somehow better for you.

Lots of things suck when you're 12. Speak for yourself, though, HTML really isn't that difficult.

Re: I Blog with Raw HTML

#100
post #5

Im confused, blogging with raw html but also using highlight.js and markdown?

re: static, there are two main points of view. Static from the visitor's perspective or static from the webmaster's perspective. This seems to be about static from the webmaster's perspective which is a "modern" view and one that seems to have overloaded the term since 2015 or so.

What? No... static web pages can have JavaScript, but everybody gets the same page over the wire. Dynamic web pages have some sort of program generating the resulting page for you, like PHP or Ruby; they can return different HTML for the same URL. That's dynamic. It has nothing to do with if you're the client or the server.
Post reply on HN