Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatically generate HTML from JSON

I am working on a template system. I imagine that as a regular user you can create a. json file, and based on that file the system will automatically generate html. I am fairly lost with how to approach it. Maybe I could create a recursive loop that runs through all objects and then.... (well I'm lost).

An example of how the JSON could look: http://pastebin.com/cJ376fiF.

How the generated HTML should look like: http://pastebin.com/e4EytHm1.

like image 311
Mikkel Avatar asked Sep 05 '25 04:09

Mikkel


1 Answers

http://www.json2html.com/

"json2html is an open source jQuery plug-in that relies on JSON transforms to convert JSON objects to HTML."

like image 101
Bernicc Avatar answered Sep 07 '25 21:09

Bernicc