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
first of all - many thanks for your work! Your plugin is really amazing and it is the only one available which was (almost) able to fulfill my needs :-). Now when it comes to my feature request I'm missing few important (IMHO) functionalities:
Exclude myself from the generated links
it would be nice to have an option to exclude the page where the pagelist is called, from the list of generated links, something like: -myself, or even to have it like that by default and only include if specified. I was missing this even in Confluence :)
Add logical operators for tags in pagelist
Current state: { pagelist 100 tag1 tag2}
this generates links for pages where either tag1 or tag2 is set. But to me this should only generate links for pages where both of the tags are set.
My idea would be something like this:
generate list of links for pages with any of the tags tag1, tag2, tag3: (tag1 or tag2 or tag3)
generate list of links only for pages with both tag1, and tag2 set: (tag1 and tag2)
ability to combine multiple cases like: ((tag1 and/or tag3) and/or (tag1 and/or tag2)) and (not tag4)
Many thanks again! Let me please know if any help or testing is needed.
Cheers
The text was updated successfully, but these errors were encountered:
That first point was a problem for me too the other day.
The second one how about this:
{pagelist tag1 tag2} for any pages with either of those tags (Current) {pagelist tag1 -tag2} for pages with tag1 but not if it also is tagged with tag2 (Current)
`{pagelist +tag1 +tag2} for pages tagged with both those tags (New)
Thanks for the offer of help. I don't have the time right now to do these changes unfortunatly. Maybe in a few weeks?
It works sufficiently for my needs (for now ^^). I will submit a PR which reflects this in the README and makes sure that it doesn't generate link for "myself" and include few minor fixes I came across.
Hello there,
first of all - many thanks for your work! Your plugin is really amazing and it is the only one available which was (almost) able to fulfill my needs :-). Now when it comes to my feature request I'm missing few important (IMHO) functionalities:
Exclude myself from the generated links
-myself
, or even to have it like that by default and only include if specified. I was missing this even in Confluence :)Add logical operators for tags in pagelist
Current state:
{ pagelist 100 tag1 tag2}
My idea would be something like this:
(tag1 or tag2 or tag3)
(tag1 and tag2)
((tag1 and/or tag3) and/or (tag1 and/or tag2)) and (not tag4)
Many thanks again! Let me please know if any help or testing is needed.
Cheers
The text was updated successfully, but these errors were encountered: