For the record, I think hugo is great, and not complex. But it’s quick start has 7 steps with lots of customization, themes etc. Ideally I would like to do the CSS myself without any abstractions. Just render some markdown, add some CSS, profit. No compile step, no theme choosing and customization, no brew install, nothing. Yes I’m very lazy
That sounds great. Not sure how you do that exactly… it’s your html file something like:
<!-- here html, head, body tags -->
{{markdown "here all the page markdown content"}}
<!-- here tags are closed -->
or
<!-- here html, head, body tags -->
{{markdown "here first markdown line"}}
{{markdown "here 2nd markdown line"}}
an so on
<!-- here tags are closed -->
Or is there a way to embed the .md file with the include
func? Would be awesome to combine 2 funcs like: {{markdown include "path/to/file.md"}}
Thanks for all those great insights.