logoalt Hacker News

MidnightRider39today at 3:22 AM5 repliesview on HN

My personal page runs on 11ty since the last 3 years and I enjoyed it a lot.

I’ll probably replace it with pure HTML soon - I found that I don’t need a SSG anymore, I can just use a local LLM to generate HTML out of markdown files and I never use any fancy features anyway.


Replies

npilktoday at 4:09 AM

Yes, I find LLMs are great for taking loosely-structured text and turning them into formatted blog posts. https://notes.npilk.com/chatgpt-is-my-ssg

show 1 reply
cachiustoday at 8:13 AM

Local LLM feels like the wrong tool for a file converter? LLMs shine in natural language processing, but their statistical nature doesn't fit consistent file conversions as more Turing-like programs.

schaefertoday at 5:09 AM

I'm sure you know about pandoc for translating markdown into html (and all it's other tricks).

show 1 reply
elevationtoday at 3:43 AM

I'm also using 11ty on a couple projects, but I abhore the npm ecosystem.

I'm considering letting an LLM generate a flat python script to replace what 11ty does for me. Once removed from the fracas, it should be stable for decades.

show 1 reply
bryanhogantoday at 4:40 AM

Wouldn't Astro work great here though?

Just a static sites without JavaScript but you still get some nice things like scoped CSS, components and being able to use markdown for blog posts.

show 1 reply