Création des options de configuration

This commit is contained in:
Bastien Dumont 2021-10-24 11:47:24 +02:00
parent d8340c7ed3
commit 1c06aceca3
2 changed files with 4 additions and 2 deletions

View File

@ -109,10 +109,10 @@ The following metadata fields can be set as strings:
* `tcrf-references-enum-separator`:
* the string used to separate the elements of an enumeration in a reference span; can be composed of any character not authorized in an identifier other than space or tab;
* defaults to `;`.
* `tcrf-enum-separator`:
* `tcrf-multiple-delimiter`:
* the string inserted between two elements (but the two last ones) in an enumeration;
* defaults to a comma followed by a space.
* `tcrf-before-last-in-enum`:
* `tcrf-multiple-before-last`:
* the string inserted between the two last elements in an enumeration;
* defaults to `and` surrounded with spaces.
* `tcrf-only-explicit-labels`:

View File

@ -56,6 +56,8 @@ local config = {
pagenote_order = 'pagefirst',
pagenote_separator = ', ',
pagenote_at_end = '',
multiple_delimiter = ', ',
multiple_before_last = ' and ',
references_range_separator = '>',
range_separator = '-',
only_explicit_labels = 'false',