You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ At least `documents` has to be specified.
32
32
|`documents`**required**| array |`[]`| List of document configurations. A simple string specifies the name of a directory under `directories.documents`. A directory needs to contain a `config.yaml` file. You can also specify `path` and `name` to a specific directory or configuration YAML file. |
33
33
|`directories`| mapping | see the following settings | You can override default directories with the `directories` mapping, just re-define one or more with one of the following settings. |
34
34
|`directories.base`**readonly**| string | directory containing the config file | If directories are not absolute paths they will be relative to this base directory. |
35
-
|`directories.build`| string |`"build"`| Intermediary SVG and PDF files are written here. Deleted unless `bake` is run with `--keep-build`|
35
+
|`directories.build`| string |`"build"`| Intermediary SVG and PDF files are written here. Deleted unless you specified `--keep-build`. |
36
36
|`directories.dist`| string |`"dist"`| Final PDF files are written here. |
37
37
|`directories.documents`| string |`"."`| Location of document configurations. |
38
38
|`directories.images`| string |`"images"`| Location of image files. |
@@ -43,7 +43,7 @@ At least `documents` has to be specified.
43
43
|`template_filters`| array |`["wordwrap"]`| List of filters made available to templates. `wordwrap` is currently the only available filter. It splits text into lines so that full words have to fit within the specified total number of character for example `{% set desc_lines = item.desc \| wordwrap(40) %}`. |
44
44
|`svg2pdf_backend`| string |`"cairosvg"`| Backend to use for SVG to PDF conversion. `"cairosvg"` is built-in, the alternative `"inkscape"` requires Inkscape to be installed |
45
45
|`compress_pdf`| boolean |`false`| Whether to compress the final PDF. Requires Ghostscript to be installed. |
46
-
|`keep_build`| boolean |`false`| Whether to keep the `build` directory and its intermediary files. You can also pass `bake --keep-build` on individual calls to do this. |
46
+
|`keep_build`| boolean |`false`| Whether to keep the `build` directory and its intermediary files. You can also pass `--keep-build` on individual calls to do this.|
47
47
|_additional custom setting_||| Any settings you want to make available to all pages of all documents. |
0 commit comments