mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
created: 20150117184156000
|
|
modified: 20220227210152153
|
|
tags: $:/tags/Macro
|
|
title: $:/editions/tw5.com/wikitext-macros
|
|
type: text/vnd.tiddlywiki
|
|
|
|
\define wikitext-example(src)
|
|
<div class="doc-example">
|
|
|
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
|
|
|
```
|
|
$src$
|
|
```
|
|
|
|
That renders as:
|
|
|
|
$$$text/vnd.tiddlywiki
|
|
$src$
|
|
$$$
|
|
|
|
... and the underlying HTML is:
|
|
|
|
$$$text/vnd.tiddlywiki>text/html
|
|
$src$
|
|
$$$
|
|
</div>
|
|
\end
|
|
|
|
\define wikitext-example-without-html(src)
|
|
<div class="doc-example">
|
|
|
|
<$macrocall $name="copy-to-clipboard-above-right" src=<<__src__>>/>
|
|
|
|
```
|
|
$src$
|
|
```
|
|
|
|
That renders as:
|
|
|
|
$$$text/vnd.tiddlywiki
|
|
$src$
|
|
$$$
|
|
</div>
|
|
\end
|
|
|
|
\define wikitext-example-table-header() <thead><tr><th/><th>wiki text</th><th>renders as</th></tr></thead>
|
|
|
|
\define wikitext-example-table-row(id, code)
|
|
<tr>
|
|
<th><<__id__>></th><td><$codeblock code=<<__code__>>/></td><td>
|
|
|
|
<<__code__>>
|
|
</td>
|
|
</tr>
|
|
\end
|
|
|
|
\define tw-code(tiddler)
|
|
<$codeblock language={{$tiddler$!!type}} code={{$tiddler$}}/>
|
|
\end
|
|
|
|
\define tw-code-link(tiddler)
|
|
[[$tiddler$]]:
|
|
|
|
<<tw-code $tiddler$>>
|
|
\end
|
|
|
|
<pre><$view field="text"/></pre> |