Skip to content

Commit 0a223c7

Browse files
authored
Made examples compatible with both Python 2 and 3 and fixed some typos (#41)
Made examples compatible with both Python 2 and 3 and fixed some typos
1 parent 247dca9 commit 0a223c7

8 files changed

+10
-10
lines changed

examples/basic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
_json = {
99
"name": "Json2Html",
10-
"desription": "converts json 2 html table format"
10+
"description": "converts json 2 html table format"
1111
}
1212

1313
output = json2html.convert(json = _json)
14-
print output
14+
print(output)

examples/clubbing_keys_of_array_of_objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
}
1414

1515
output = json2html.convert(json = _json)
16-
print output
16+
print(output)

examples/deep_nesting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
}
3030

3131
output = json2html.convert(json = _json)
32-
print output
32+
print(output)

examples/setting_custom_attrs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
_json = {
99
'name': 'Json2Html',
1010
'language':'python',
11-
'desription': 'converts json 2 html table format'
11+
'description': 'converts json 2 html table format'
1212
}
1313

1414
output = json2html.convert(json = _json, table_attributes="class=\"table table-bordered table-hover\"")
15-
print output
15+
print(output)

test/basic.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "Json2Html",
3-
"desription": "converts json 2 html table format"
3+
"description": "converts json 2 html table format"
44
}

test/basic.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<td>Json2Html</td>
55
</tr>
66
<tr>
7-
<th>desription</th>
7+
<th>description</th>
88
<td>converts json 2 html table format</td>
99
</tr>
1010
</table>

test/setting_custom_attrs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "Json2Html",
33
"language":"python",
4-
"desription": "converts json 2 html table format"
4+
"description": "converts json 2 html table format"
55
}

test/setting_custom_attrs.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<td>python</td>
99
</tr>
1010
<tr>
11-
<th>desription</th>
11+
<th>description</th>
1212
<td>converts json 2 html table format</td>
1313
</tr>
1414
</table>

0 commit comments

Comments
 (0)