There are some codes to calculate the size of tiddlers like the plugin size from @telmiger or the solution by @EricShulman or the code is displayed in edit mode from @linonetwo. I am sure there are other solutions out there I have not seen.
One simple and close to real size is the below WIkitext
- Create a tiddler, and tag it with
$:/tags/ViewTemplate/Subtitle
- Put the below WikText inside body (text field and save)
- Open any tiddler and see the size in kB at the bottom of tiddler.
Size of tiddler: <$text text={{{
[<currentTiddler>fields[]] :map[<..currentTiddler>get<currentTiddler>length[]else[0]]
[<currentTiddler>fields[]length[]]
:and[sum[]divide[1024]] kB :and[join[ ]]
}}}/>
- Please share if you have a simpler or more complete solution
- Please revise the above code to improve the precision of calculated value