I Blog with Raw HTML
devpoga.org
I Blog with Raw HTML
1–10 of 137 posts
Re: I Blog with Raw HTML
#2I 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
#3I'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.
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
#4I'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.
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
#5Re: I Blog with Raw HTML
#6Re: I Blog with Raw HTML
#7Re: I Blog with Raw HTML
#8Re: I Blog with Raw HTML
#9Im confused, blogging with raw html but also using highlight.js and markdown?
Re: I Blog with Raw HTML
#10If 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.