diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-29 11:48:59 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-09-29 11:49:13 +0200 |
commit | 800ffaf658c3defe165dd24c3ecd65ceabc7096a (patch) | |
tree | b9b2e44ac8a73efecdba3ac65be4ebb0dd20e239 /src/config_file.rs | |
parent | fix(MangledName): Also replace `"` and `'` (diff) | |
download | lpm-800ffaf658c3defe165dd24c3ecd65ceabc7096a.tar.gz lpm-800ffaf658c3defe165dd24c3ecd65ceabc7096a.zip |
feat(new/figure)!: Init
BREAKING CHANGE: The config file now needs to contain an `templates.figure` key. You can simply add this.
Diffstat (limited to 'src/config_file.rs')
-rw-r--r-- | src/config_file.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config_file.rs b/src/config_file.rs index f9ea659..8894721 100644 --- a/src/config_file.rs +++ b/src/config_file.rs @@ -10,4 +10,5 @@ pub struct Config { pub struct Template { pub section: String, pub chapter: String, + pub figure: String, } |