add n-depth inclusion syntax
Ticket
+status
+priority
+commit
+issues
in current inclusion syntax, you can set the view of the card you're including as view:viewname. And for items in that view with item:viewname. But you can't set it for the item's items. or, for that matter, you can't set anything on that item except for the view (like, say, image size)
+solution
get rid of "item" and go for a nested structure by changing:
{{cardname|viewname; item:viewname}}
to
{{cardname|viewname|viewname}}
In other words, each pipe indicates a new depth of inclusion. This could go as many levels as needed, would solve the aforementioned image problem as follows:
{{cardname|viewname|size:icon}}
+example
Adding some examples to make sure this doesn't have any yet-unseen hitches:
- {{List of pictures|content;show:menu|size:icon}}
- {{List of song-lists|content;show:menu|content;show:menu|audio}}
(where the list is a Pointer, the cards in it are also Pointers, and the cards in it are audio files. audio is an imagined view to play audio files :-) - ??