Unlike the summary
field, the theme expects company_name
to be plain text; no markdown and no HTML.
You could override the theme’s template if you want:
hugo mod vendor
mkdir -p layouts/partials/blox
cp _vendor/github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind/layouts/partials/blox/resume-experience.html layouts/partials/blox
The delete the _vendor directory in the root of your project.
Then modify the file you just created, line 41. Change this:
{{.company_name}}
To this:
{{.company_name | safeHTML}}