]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
(no commit message)
authorluke.schierer@502bb1c5e3da2bf0a6a8c76f17674b51d178247b <lukeschierer@web>
Tue, 27 Oct 2020 02:43:45 +0000 (22:43 -0400)
committeradmin <admin@branchable.com>
Tue, 27 Oct 2020 02:43:45 +0000 (22:43 -0400)
doc/bugs/meta_directive_with_multiple_authors.mdwn [new file with mode: 0644]

diff --git a/doc/bugs/meta_directive_with_multiple_authors.mdwn b/doc/bugs/meta_directive_with_multiple_authors.mdwn
new file mode 100644 (file)
index 0000000..c79f94b
--- /dev/null
@@ -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.