made the configuration file format TOML instead of YAML

This commit is contained in:
2024-08-08 16:16:36 -06:00
parent 821ae2d8a5
commit 8e5c40a642
4 changed files with 27 additions and 13 deletions

11
doc/configuration.toml Normal file
View File

@@ -0,0 +1,11 @@
[links]
# The prefix to apply to all internally-generated URLs. Default is "/".
prefix = "/"
# If true, generate relative URLs for all internal URLs. Default is false.
relative = false
[templates]
# The template directory name under the Obsidian vault. Default is ".dragonglass.tmpl".
directory = ".dragonglass.tmpl"
# The default template name. Default is "default.html".
default = "default.html"

View File

@@ -1,6 +0,0 @@
# The prefix to apply to all internally-generated URLs. Default is "/".
url_prefix: /
# The template directory name under the Obsidian vault. Default is ".dragonglass.tmpl".
template_directory: .dragonglass.tmpl
# The default template name. Default is "default.html".
default_template: default.html