I see lots of folks building websites who go straight to adding build steps and markdown-to-html parsers to their website, half of those get stranded in toolchain hell in the process.
Here's an alternative that's often overlooked: Make writing html comfortable, it'll delay the need for a complex build step. It might not work for all cases, but it might help a handful few.
Ivan Reese
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to Ivan Reese • • •pvh
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to pvh • • •pvh
in reply to Devine Lu Linvega • • •Tomáš
in reply to Devine Lu Linvega • • •This is so good. Gives me an idea of implementing something similar like this in ratpoison's prompt....
thanks
Devine Lu Linvega
Unknown parent • • •Devine Lu Linvega
Unknown parent • • •Devine Lu Linvega
Unknown parent • • •Devine Lu Linvega
Unknown parent • • •Ed Davies
in reply to Devine Lu Linvega • • •I used to write direct HTML for all my pages, just starting with a template page for stylesheet inclusion, headers and footers, etc. When I went over to mostly posting to my blog I wrote a site-building system to do things like the next and prev links in the blog pages, the index pages and the Atom feed.
But, I still write the actual content of the pages directly as HTML. I use the Geany editor which at least adds the closing tags to elements. I also have a separate little program which resizes images and generates the anchor and img elements so people can click for a bigger view of JPGs but other than that help I don't find just writing HTML to be the problem creating pages.
akavel
in reply to Devine Lu Linvega • • •GitHub - akavel/scribbles
GitHub🍉 estoy desesperada 🍉
in reply to Devine Lu Linvega • • •a few versions ago I decided to make my site gemini-first. the hardest and most time consuming part was making it web accessible, there's still stuff I'm polishing now even. its a lot to bite off and I was already many many website versions in before I even attempted it.
gemini is nice because it reminds me of how simple things could be while I pile on amusing complexity
Devine Lu Linvega
in reply to 🍉 estoy desesperada 🍉 • • •Devine Lu Linvega
Unknown parent • • •Hippo 🍉
in reply to Devine Lu Linvega • • •this is cool! My first website was hand-coded in HTML, and I think it's the best way to be comfortable with the process even if you decide to use annoying build steps later.
At least you'll have a handle on what all those parsers are *doing* and the confidence to step in and say "Back off buddy, we're going to handle this part MY way!"
mega
in reply to Devine Lu Linvega • • •[Emmet] was a good idea all along
[Emmet]: https://docs.emmet.io/abbreviations/
Abbreviations
docs.emmet.iowvs
in reply to Devine Lu Linvega • • •Markdeep
casual-effects.comTendigits
in reply to Devine Lu Linvega • • •Csepp 🌢
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to Csepp 🌢 • • •Devine Lu Linvega
Unknown parent • • •Alexander Cobleigh
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to Alexander Cobleigh • • •Alexander Cobleigh
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to Alexander Cobleigh • • •Kototama
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to Kototama • • •http://wiki.xxiivv.com/site/lain.html
XXIIVV — lain
wiki.xxiivv.comCaffeine’s Heir
in reply to Devine Lu Linvega • • •Fanny Matrice
Unknown parent • • •Devine Lu Linvega
in reply to Fanny Matrice • • •Diego F. Goberna
in reply to Devine Lu Linvega • • •completely agree. You don't even need that help. Dammit, html is not black magic, and it's not a blocker/time sink. Write html/css/js manually and from scratch, for small-medium websites is more than enough.
Templates for headers/footers/x? If you can program, a basic generator without dependencies will take you one morning/day, and it will be simple enough that won't add much maintenance penalty for the future.