See all fields and content in each

Tiddlywiki can get overwhelming quickly. And in my case, it did.

There are so many tiddlers, so many fields and these fields carry different values in different tiddlers.

But how can I see ALL the fields I have ever used and values they carry in different tiddlers? And if the values are links, they should appear as links.

A list like this would be perfect

fld1
  val1
  val2
  val5
fld2
  val3
  val4

And if it can also add the reference to tiddler, that would be great, too.

fld1
  tid1
    val1
    val5
  tid2
    val2
    val3
fld2
  tid7
    val4

With list widgets and filters you can do it.

The beging will be something like:

<$list filter="[all[tiddlers]fields[]]" variable="F">
''<<F>>''<br>
<$list filter="[all[tiddlers]has<F>]">
* <<currentTiddler>> : {{{[<currentTiddler>get<F>] }}}<br>
</$list>
</$list>

@Alvaro Thanks. That worked perfectly. I will need to tweak it a bit. And I will get back if I am unable to do it. :slight_smile:

1 Like