Feature: support any tag separator

So it allows to have multiple words tags.

Breaking change: commas ',' are no longer a default separator.

Fixes 
This commit is contained in:
ArthurHoaro 2020-10-22 16:21:03 +02:00
parent 48df9f45b8
commit b3bd8c3e8d
38 changed files with 585 additions and 114 deletions
application/render

View file

@ -161,6 +161,7 @@ class PageBuilder
$this->tpl->assign('formatter', $this->conf->get('formatter', 'default'));
$this->tpl->assign('links_per_page', $this->session['LINKS_PER_PAGE'] ?? 20);
$this->tpl->assign('tags_separator', $this->conf->get('general.tags_separator', ' '));
// To be removed with a proper theme configuration.
$this->tpl->assign('conf', $this->conf);