I'm trying to create a button that will take the output generated by the following list-widget and set it as the text of another tiddler. The text needs to retain all its original formatting.
Here is the widget whose output I want to save (note that the operator used is from the new Streams pre-release, but I don't think that this is relevant to my question):
<$list filter="[<currentTiddler>get-stream-nodes[]]">
<$transclude mode=block/>
</$list>
I guess I want to get the output of this widget into a variable, and then use the button-widget with "setField" to save it into another tiddler.
I have tried using something like <$set name=myText filter="[<currentTiddler>get-stream-nodes[]get[text]]"> but I end up losing all the formatting.
Anyone able to help me out here?
Thanks in advance.