]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/meta_directive_with_multiple_authors.mdwn
(no commit message)
[git.ikiwiki.info.git] / doc / bugs / meta_directive_with_multiple_authors.mdwn
1 Some wiki pages have multiple authors.  It seems logical that you would use multiple meta directives to mark this,
3 ```
4 \[[!meta author="author one"]]
5 \[[!meta author="other author"]]
6 ```
8 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 
10 ```
11 author(author one)
12 ```
14 will not match while one looking for
16 ```
17 author(other author)
18 ```
20 will match.  I would expect that both would match.