mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
29 lines
790 B
Plaintext
29 lines
790 B
Plaintext
created: 20140908104107181
|
|
modified: 20140908104107181
|
|
tags: Macros
|
|
title: DumpVariablesMacro
|
|
type: text/vnd.tiddlywiki
|
|
caption: dumpvariables
|
|
|
|
The dumpvariables macro displays a table containing the values of all the variables defined at that location in the widget tree. It can be useful for exploring the mechanisms of TiddlyWiki and for debugging.
|
|
|
|
! Parameters
|
|
|
|
The dumpvariables macro does not require any parameters
|
|
|
|
! Examples
|
|
|
|
|
|
```
|
|
<<dumpvariables>>
|
|
```
|
|
|
|
Returns:
|
|
|
|
<<dumpvariables>>
|
|
|
|
The results returned by the dumpvariables macro will depend upon where it is used.
|
|
|
|
Note that the values displayed for macros are displayed with all the parameters and variable subsitutions set to an empty string. So, a macro defined as `\define myMacro(text) ''$text$''` will display as `''''`.
|
|
|