The software that generates this blog is hugo, a static site
generator. To deploy this I have a Makefile
that runs hugo
but also runs some other bits. One of them minifies the html
to get them to the browser as fast as possible.
As it turns out minify upsets the unicorn. Specifically it
changes href = ""
attributes for the a
tag to just href
. I tried
fixing it in hugo - and I could - but it was pretty dirty. So in the
end I fixed it with sed
. That just changed those to href="#"
. A
kludge, but it works.
|
|