created: 20131205161051792 modified: 20140120171407764 tags: WikiText title: Typed Blocks in WikiText type: text/vnd.tiddlywiki caption: Typed Blocks WikiText can include blocks of text that are rendered with an explicit ContentType like this: ``` $$$image/svg+xml $$$ ``` This renders as: $$$image/svg+xml $$$ It is also possible to abbreviate the ContentType to a file extension. For example: ``` $$$.svg $$$ ``` This renders as: $$$.svg $$$ Unknown types render as plain text: ``` $$$text/unknown Some plain text, which will not be //formatted//. $$$ ``` Which renders as: $$$text/unknown Some plain text, which will not be //formatted//. $$$ A render type can also be specified, causing a particular text rendering to be displayed. For example: ``` $$$text/vnd.tiddlywiki>text/html This is ''some'' wikitext $$$ $$$text/vnd.tiddlywiki>text/plain This is ''some'' wikitext $$$ ``` Renders as: $$$text/vnd.tiddlywiki>text/html This is ''some'' wikitext $$$ $$$text/vnd.tiddlywiki>text/plain This is ''some'' wikitext $$$