I'm working on converting
this tool to tiddlywiki as part of my ongoing efforts to build a complete D&D campaign tool in tiddlywiki, and I had a question about parsers. My GridParser tool is going to return a svg of the grid. One of the features of that tool is the ability to add comments on the grid itself, and I wanted to make the comments support TiddlyWiki syntax. Should my GridParser.js file just require() the WikiParser.js file and call WikiParser(null, {{content of comment}}, {}) and then add that as an element in my GridParser's parse tree? Is there any considerations about the interactions between parsers?