I have a bunch of objects like this:
"value": {
"something": true,
"another": false,
"testing": true,
"bob": "Hello",
"restrooms": true,
"price_rating": 1,
}
What I simply want to do is render the items inside value
as HTML. Sort of like:
"something": true
"another": false
"testing": true
"bob": "Hello"
"restrooms": true
"price_rating": 1
Is there a simple way to do this without writing some complicated each
and appending each item one at a time? Of note, these objects will have different attributes and number of attributes.