Hi Patrick As Stephan says, the basic problem is that much of the formatting syntax has changed for TW5. The text at the top of tiddlywiki.com is intended to make that clear, so if you missed that we maybe need to make the warnings a bit more more prominent?
Anyhow, the crash you are experiencing should not happen, and I'd like to sort that out. Would you be able to email me the original TWC file privately? My email address is jeremy dot ruston at gmail dot com. Many thanks, Jeremy. On Sat, Mar 8, 2014 at 6:48 AM, Stephan Hradek <[email protected]>wrote: > {{{ id TWc syntax for code while ``` is the correct one for TW5 > > {{{ is also TW5 syntax for filtered transclusion which might be the reason > why your code calls > > > /* > Get a hashmap by tag of arrays of tiddler titles > */ > exports.getTagMap = function() { > var self = this; > return this.getGlobalCache("tagmap",function() { > var tags = {}; > // Collect up all the tags > for(var title in self.tiddlers) { > var tiddler = self.tiddlers[title]; > if(tiddler.fields.tags) { > for(var index=0; index<tiddler.fields.tags.length; index > ++) { > var tag = tiddler.fields.tags[index]; > if(tags[tag]) { > tags[tag].push(title) > } else { > tags[tag] = [title]; > } > } > } > } > return tags; > }); > }; > > > which is the only place in TW5 where "tags[tag].push" is used. > > If changing {{{ }}} to ``` ``` does not solve your situation, you should > provide your wiki privately to someone who's willing to take a look. > > -- > You received this message because you are subscribed to the Google Groups > "TiddlyWiki" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/tiddlywiki. > For more options, visit https://groups.google.com/d/optout. > -- Jeremy Ruston mailto:[email protected] -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

