This isn't a Middleman issue per se, but I'm having some issues getting html tags embedded in YAML to output to my Middleman templates.
So if I have YAML like:
<input type="text" name="T_095">
<input type="text" name="T_096">
[etc.]
My HTML is being output into my Middleman builds like:
<input type="text" name="T_095" />
I need to decode the angle brackets, double quotes, etc. but I can't find a way to do it.