Handle rendering json arrays and objects

This commit is contained in:
Tom Alexander
2020-04-12 21:40:34 -04:00
parent 24d2c1831c
commit 7a28e6a9d4
5 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1 @@
{"name": ["Bob", "Smith"]}

View File

@@ -0,0 +1 @@
{"name": {"first": "Alice", "last": "Jones"}}

View File

@@ -0,0 +1 @@
{"name": ["Bob", {"title": "sir"}, [1,2,3]]}

View File

@@ -0,0 +1 @@
Hello {name}!