mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-05-20 20:32:18 +00:00
2bd4c38ee3
This reverts commit 2801eee905.
15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
title: $:/core/macros/dumpvariables
|
|
tags: $:/tags/Macro
|
|
|
|
\define dumpvariables()
|
|
\whitespace trim
|
|
<ul>
|
|
<$list filter="[variables[]]" variable="varname">
|
|
<li>
|
|
<strong><code><$text text=<<varname>>/></code></strong>:<br/>
|
|
<$codeblock code={{{ [<varname>getvariable[]] }}}/>
|
|
</li>
|
|
</$list>
|
|
</ul>
|
|
\end
|