I think it would look a lot like XSLT
replies(1):
Seriously browsers just need to adopt XSLT 3.0 and stop all this wheel reinvention already.
[0] https://github.com/Paligo/xee/issues/32#issuecomment-2762343...
```
static/
js/
css/
log/
my-post.xml
my-post.xsl
index.html
```Caddyfile:
```
:8080
try_files {path}.xml {path}.html
file_server {
index index.xml index.html
root static
}```
XSLT work is all based off of a repository someone wrote with a grug brain explainer:
https://github.com/pacocoursey/xslt
The next step is to generate all of the `static` dir from markdown files and probably a new markdown-like format for registering templates to generate xsl/xml files for special html blocks and template parts or generating blog listing pages.