I have the following piece of haml code
%dt= 'Properties'
%dd{title: 'Properties'}
- config[:Properties].each do |key, values|
%p
%em
%b= t('.Key')
= key
%em
%b= t('.Value')
= values
here rather than making it key "..." value " ..."
for each and every key/value pair. I would like to make the key and value as a list header . Such that
Key value
... ....
... ....
... ....
Anyone have any suggestion on how i can achieve this ?