blog/config.toml
lf- 94e44e406b Fix nix syntax so that snippets included out of context render properly
Example:

```nix
mkDerivation = args: super.mkDerivation (args // {
  doCheck = false;
  enableLibraryProfiling = false;
});
```

Used to highlight the `=` as illegal syntax, which would be true if it
were the only thing in a nix file. So let's just ignore that stuff and
turn it into normal text.
2021-03-09 04:29:12 -08:00

21 lines
369 B
TOML

base_url = "https://jade.fyi"
compile_sass = true
build_search_index = false
feed_filename = "rss.xml"
generate_feed = true
title = "jade's website"
description = "computers i guess"
[markdown]
highlight_code = true
extra_syntaxes = ["syntax"]
[extra]
# Put all your custom variables here
copyright = "(c) 2021 jade CC-BY-SA"
dtformat = "%B %d, %Y"
debug = false