try to set this tag:
- my[[tag]]4 fun Works! Save and reload. You'll get the tags: - 4 - fun]] - my[[tag Or try - my [[tag]fun]] and get - [[my - [[tag]fun]]]] The problem lies in the regular expression: (?:\[\[([^\]]+)\]\])|([^\s]+) (boot.js L272) I think [[ ]] is a quite nice quoting mechanism. Still I think it should be enhanced. My alternative proposal: \[\[((?:[^\]\\]|\\.)*)\]\]|(\S+) But this requires: Enhancement of the stringify as it's required to backslash any "]" and any "\". I haven't yet looked up where this needs to be applied. Adding a "replace" in line 278: var item = (match[1] || match[2]).replace(/\\(.)/g, "$1"); -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" 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/tiddlywikidev. For more options, visit https://groups.google.com/groups/opt_out.
