1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-18 10:19:44 +00:00
TiddlyWiki5/tiddlywiki5/tiddlers/TypedBlockTests.tid
Jeremy Ruston 3bfab9f9da Added support for typed blocks in wikitext
This allows embedded blocks of another mime type to appear in a
tiddler, useful for syntax highlighting fragments of javascript
2012-03-03 12:29:13 +00:00

14 lines
352 B
Plaintext

title: TypedBlockTests
Here's an example of a typed block containing JavaScript source code:
$$$.js
return 2+2;
$$$
Here's an example of a typed block containing an SVG image:
$$$image/svg+xml
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="100">
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>
$$$