Would be helpful to indent QText div markers
Summary: When you have deeply-nested QText class expressions, it can get hard to visually parse what's going on.
From email:
The
{{classname(s):
CONTENTS
for
creation works great - but as I start nesting <divs>, the lack of indentation starts making the View really hard to read. (See the Default View of http://www.querki.net/u/darker/spirit-island-playtesting/Power-Card for an example, and it's not even half-done.)
Could you ignore leading whitespace when testing for {{ and }}? (Or save it and replicate it in the output HTML - makes it easier to debug - but that's less critical.)
The trick to this is that leading whitespace is terribly important in Markdown (which QText is adapted from), and making it not relevant in this case might be tricky. I don't want to do this casually.
Are there better solutions? Might we be able to provide useful visual cues in the Editor, instead of changing the language? I suspect this may be helpfully thought of as an IDE problem rather than a language problem. So for example, we could do what many editors do, and highlight the matching delimiters. That's not easy, but it may be correct...