Hashtag strings in Hugo
1 Mar 2023I did a fun bit of Hugo templating today that seemed worth sharing. I was previously generating my list of hashtags to apply to a social post inside of my Zapier workflow. I’d pull the list of tags then manipulate them into a single string and add the # symbol.
Today I realized that this would be much simpler to do in Hugo as part of my JSON output. It came out like this:
"hashtags" (delimit
(apply (apply .Params.tags "replaceRE" "\\s" "" ".")
"print"
"#" ".")
" ")
Two apply statements might be overkill, but it works. I needed to do three things:
- Remove the spaces
- Add a # symbol in front of each tag
- Converts the list to a single string that I can just plop into a post
Now I have one field that I can put into a post. I find that zero code workflows are best when simplest. Doing variable manipulation with them is never elegant.