mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
101 lines
1.9 KiB
Plaintext
101 lines
1.9 KiB
Plaintext
caption: Typisierte Blöcke
|
|
created: 20131205161051792
|
|
creator: pmario
|
|
modified: 20140922131933001
|
|
modifier: ChrisK
|
|
tags: WikiText
|
|
title: Typisierte Blöcke in WikiText
|
|
type: text/vnd.tiddlywiki
|
|
|
|
WikiText kann Textblöcke direkt darstellen, wenn ihr Inhalts-Typ ([[MIME-Type]]) bekannt ist:
|
|
|
|
```
|
|
$$$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="green" />
|
|
</svg>
|
|
$$$
|
|
```
|
|
|
|
Dargestellt als:
|
|
|
|
$$$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="green" />
|
|
</svg>
|
|
$$$
|
|
|
|
Es ist ebenfalls möglich, den Type über die Datei Erweiterung zu definieren:
|
|
|
|
```
|
|
$$$.svg
|
|
<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>
|
|
$$$
|
|
```
|
|
|
|
Dargestellt als:
|
|
|
|
$$$.svg
|
|
<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>
|
|
$$$
|
|
|
|
Unbekannte Typen werden als Text dargestellt:
|
|
|
|
```
|
|
$$$text/unknown
|
|
Einfacher Text, der nicht //formatiert// wird.
|
|
$$$
|
|
```
|
|
|
|
Dargestellt als:
|
|
|
|
$$$text/unknown
|
|
Einfacher Text, der nicht //formatiert// wird.
|
|
$$$
|
|
|
|
Zudem kann auch der auszugebende "Ziel-Typ" festgelegt werden. zB:
|
|
|
|
```
|
|
1)
|
|
|
|
$$$text/vnd.tiddlywiki>text/html
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|
|
|
|
2)
|
|
|
|
$$$text/vnd.tiddlywiki>text/plain
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|
|
|
|
3)
|
|
|
|
$$$text/vnd.tiddlywiki
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|
|
```
|
|
|
|
Dargestellt als:
|
|
|
|
1)
|
|
|
|
$$$text/vnd.tiddlywiki>text/html
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|
|
|
|
2)
|
|
|
|
$$$text/vnd.tiddlywiki>text/plain
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|
|
|
|
3)
|
|
|
|
$$$text/vnd.tiddlywiki
|
|
Hier steht ''fett formatierter'' WikiText.
|
|
$$$
|