You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great extension! I'm looking for a even more granular inclusion, though, so to build e. g. a table out of single lines from other wiki pages:
{{include(Page, /grep/)}} would only include lines matching grep from Page.
Thanks for this great extension! I'm looking for a even more granular inclusion, though, so to build e. g. a table out of single lines from other wiki pages:
{{include(Page, /grep/)}}
would only include lines matching grep from Page.Example
PageA contains:
|attr a|foo|
|attr b|bar|
PageB contains:
|attr b|baz|
{{include(PageA, /attr b/)}}
{{include(PageB, /attr b/)}}
would yield:
|attr b|bar|
|attr b|baz|
Amazing would be to combine this with
{{child_pages}}
somehow, to state{{include_child_pages(ParentPage, /attr b/)}}
...The text was updated successfully, but these errors were encountered: