Live data from Hacker News

I Blog with Raw HTML

devpoga.org

1–10 of 137 posts

Re: I Blog with Raw HTML

#2
I'm blogging with Raw HTML since the beginning of this year. The biggest missing piece is probably RSS support which makes me sad.

I can write a script to generate that from the list of article but I'm not sure if there's better way.

Re: I Blog with Raw HTML

#3
post #2

I'm blogging with Raw HTML since the beginning of this year. The biggest missing piece is probably RSS support which makes me sad. I can write a script to generate that from the list of article but I'm not sure if there's better way.

The moment you add an RSS script you cease to use raw HTML and start to use your own bespoke site generator.

On the plus side, a personal project only changes when you intend for it to, so you don't need to worry about breakage. (Unless your scripting language breaks.)

Re: I Blog with Raw HTML

#4
post #2

I'm blogging with Raw HTML since the beginning of this year. The biggest missing piece is probably RSS support which makes me sad. I can write a script to generate that from the list of article but I'm not sure if there's better way.

If you're using markdown and js, in what sense are you blogging in raw HTML? Not to doubt but it feels like a qualified version of the underlying state of affairs.

I blog (for work) on WordPress and hate it. I could imagine using org mode or markdown, pandoc to emit HTML with some tuning and a simple script to publish via sftp.

Re: I Blog with Raw HTML

#10
A tiny bit of webdev-side dynamicism can really help with managing visitor-side static websites built on .html files in directories.

If you run your own webserver and write HTML then check out server side includes. Being able to include .html fragments in other .html files means no need to edit the same bit in dozens of .html files (ie, left_menu.html, footer.html, etc). And since SSI hasn't really changed in 20 years the major implementations (nginx, apache, etc) have basically nill attack surface or mantainence burden. And there's no "rebuilding" or anything that's not HTML markup to maintain.

HTML+webserver SSI is just more HTML but without the redundant editing.

Post reply on HN