Good point. I waded through the items that lead to that button working as follows:
* GettingStarted is composed of a set of tabs listing all tiddlers with a name starting with "GettingStarted -"
* GettingStarted - TiddlyFox is composed of "Saving with TiddlyFox"
* Saving with TiddlyFox points to "$:/editions/
tw5.com/snippets/download-empty-button"
* $:/editions/
tw5.com/snippets/download-empty-button has param="$:/editions/
tw5.com/download-empty"
* $:/editions/
tw5.com/download-empty is the tiddler that you need to edit and then you need to understand the filter language to do it
* I'm guessing that the correct code would be to create a new tiddler "downloadList" with contents like: (More seasoned guys chime in)
\define saveTiddlerFilter()
[[$:/core]] [[$:/isEncrypted]] [[$:/themes/tiddlywiki/snowwhite]] [[$:/themes/tiddlywiki/vanilla]] -[[$:/boot/boot.css]] -[type[application/javascript]library[yes]] -[[$:/boot/boot.js]] -[[$:/boot/bootprefix.js]] +[!!Put your filter here!!] +[sort[title]]
\end
\define savingEmpty()
yes
\end
{{$:/core/templates/tiddlywiki5.html}}
And then call it in another tiddler with
<$button message="tm-download-file" param="downloadList" class="tc-btn-big-green">Download Empty + My List {{$:/core/images/save-button}}</$button>