Add citeproc related options to sample defaults file.
This commit is contained in:
parent
2632138360
commit
5cf3140b09
1 changed files with 15 additions and 2 deletions
17
MANUAL.txt
17
MANUAL.txt
|
@ -1522,9 +1522,22 @@ include-after-body: []
|
||||||
include-in-header: []
|
include-in-header: []
|
||||||
resource-path: ["."]
|
resource-path: ["."]
|
||||||
|
|
||||||
# filters will be assumed to be Lua filters if they have
|
# turn on built-in citation processing. Note that if you need
|
||||||
|
# control over when the citeproc processing is done relative
|
||||||
|
# to other filters, you should instead use `citeproc` in the
|
||||||
|
# list of `filters` (see below).
|
||||||
|
citeproc: true
|
||||||
|
csl: ieee
|
||||||
|
bibliography:
|
||||||
|
- foobar.bib
|
||||||
|
- barbaz.json
|
||||||
|
|
||||||
|
# Filters will be assumed to be Lua filters if they have
|
||||||
# the .lua extension, and json filters otherwise. But
|
# the .lua extension, and json filters otherwise. But
|
||||||
# the filter type can also be specified explicitly, as shown:
|
# the filter type can also be specified explicitly, as shown.
|
||||||
|
# Filters are run in the order specified.
|
||||||
|
# To include the built-in citeproc filter, use either `citeproc`
|
||||||
|
# or `{type: citeproc}`.
|
||||||
filters:
|
filters:
|
||||||
- wordcount.lua
|
- wordcount.lua
|
||||||
- type: json
|
- type: json
|
||||||
|
|
Loading…
Add table
Reference in a new issue