Added examples of JSON text blocks

This commit is contained in:
Jeremy Ruston 2012-03-03 13:52:22 +00:00
parent 9de3bb6f59
commit 193365c450
2 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,7 @@ Some useful tiddlers for feature testing:
* SampleJavaScript and SampleJavaScriptWithError showing how JavaScript code is displayed
* VideoTests showing how different online video formats can be embedded
* SliderTests showing how sliders work
* TypedBlockTests showing how embedded typed text blocks work
Technical documentation includes:
* [[Testing]] regimen

View File

@ -31,3 +31,14 @@ $$$.svg
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>
$$$
And, finally, a JSON example:
{{{
$$$.json
{"teapot": "brown","inside":["milk","sugar",23]}
$$$
}}}
Which renders as:
$$$.json
{"teapot": "brown","inside":["milk","sugar",23]}
$$$