I'm unable to find any documentation on how to merge two hash maps. This is what I am trying to acheive
<select <@render_attrs commonattrs.merge({"class":"select"}) /> > ....
<#macro render_attrs attrs>
<#list attrs?keys as key>
<#if attrs[key]!="">
${key}="${attrs[key]}"
</#if>
</#list>