From: luke.schierer@502bb1c5e3da2bf0a6a8c76f17674b51d178247b Date: Tue, 27 Oct 2020 02:43:45 +0000 (-0400) Subject: (no commit message) X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/2b1857135def154369e4ee33a565861272643b43 --- diff --git a/doc/bugs/meta_directive_with_multiple_authors.mdwn b/doc/bugs/meta_directive_with_multiple_authors.mdwn new file mode 100644 index 000000000..c79f94b51 --- /dev/null +++ b/doc/bugs/meta_directive_with_multiple_authors.mdwn @@ -0,0 +1,20 @@ +Some wiki pages have multiple authors. It seems logical that you would use multiple meta directives to mark this, + +``` +\[[!meta author="author one"]] +\[[!meta author="other author"]] +``` + +however, when you do this, it appears that things that key off of the author tag only pick up on the last instance of the directive. for example a page spec looking for + +``` +author(author one) +``` + +will not match while one looking for + +``` +author(other author) +``` + +will match. I would expect that both would match.