2023-08-07 17:49:25 +00:00
|
|
|
# cargo smart-release bfom-lib -u --skip-publish -n -b patch
|
|
|
|
# cargo smart-release bfom -u --skip-publish -n -b patch
|
|
|
|
|
|
|
|
|
|
|
|
# How many spaces of indentation do you want?
|
|
|
|
# Defaults to 2
|
|
|
|
# Optional
|
|
|
|
indentation = 2
|
|
|
|
|
|
|
|
# Optional
|
|
|
|
src = "./src"
|
|
|
|
|
|
|
|
# Optional
|
|
|
|
dest= "./build"
|
|
|
|
|
|
|
|
# html blocks you dont want to include in teh finished page
|
|
|
|
# Optional
|
|
|
|
html_void = []
|
|
|
|
|
|
|
|
[template]
|
|
|
|
# Templates are hjtml files that teh generated markdown is insereted into.
|
|
|
|
# There are several options on how this is carried out.
|
|
|
|
|
|
|
|
# enable templating
|
|
|
|
# Optional
|
|
|
|
enable = true
|
|
|
|
# Set a base template
|
|
|
|
# Optional
|
2023-09-28 20:03:10 +00:00
|
|
|
general = "./src/templates/general.html"
|
2023-09-25 01:04:03 +00:00
|
|
|
powerpoint = "./src/templates/powerpoint.html"
|
2023-08-07 17:49:25 +00:00
|
|
|
|
|
|
|
# Priority of the templates to use, first one to match a markdown file is used.
|
|
|
|
# An Empty array below is also valid
|
|
|
|
|
|
|
|
# general: use the general file specified above, if it exists.
|
|
|
|
|
|
|
|
# ajacent: check if there is a template file with the same name as the markdown file ajacent to the markdown file.
|
|
|
|
# ./src/exasmple.md
|
|
|
|
# ./src/example.html
|
|
|
|
|
|
|
|
# folder: a html file with the same name of the folder that the md resides in.
|
|
|
|
# ./src/blog/blog.html
|
|
|
|
# ./src/blog/post1.md
|
|
|
|
|
|
|
|
# default: use an inbuilt html5 template
|
|
|
|
|
|
|
|
|
|
|
|
# Optional
|
|
|
|
order = ["ajacent", "general", "folder", "default"]
|
|
|
|
|
|
|
|
blog_src = ["blog", "blog_uni"]
|