monperrus / bibtexbrowser

Beautiful publication lists with bibtex and PHP (standalone or in Wordpress)
http://www.monperrus.net/martin/bibtexbrowser/
84 stars 54 forks source link

Added option to multisearch that filters on names (author or editor). #119

Closed Heerkog closed 1 year ago

Heerkog commented 1 year ago

Names require exact matching per name. Although a preg_match over the entire author field is possible, it's inconvenient and often results in unwanted matches if not done careful. Instead, now use 'name'=>'(M. Monperrus|Monperrus, M.)' to exact match the name of an author or editor, use 'author_name' to match the name of an author, and use 'editor_name' to match the name of an editor.

monperrus commented 1 year ago

looks great, would you be able to add a test case in BibtexBrowserTest?

thanks @Heerkog

Heerkog commented 1 year ago

Done! @monperrus

monperrus commented 1 year ago

thanks a lot @Heerkog