summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2021-01-09 16:44:44 +0000
committer0x4A6F <0x4A6F@users.noreply.github.com>2021-01-09 16:47:10 +0000
commit880dcc684846ce5c650c1f19d50a8f57bd2c09e1 (patch)
tree209bd518b9aa28fd3608c0196ab8b9756c9508ac /pkgs/applications/misc
parent9219adb40c3c50bda9b6b0167b84568b4109f37c (diff)
downloadnixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar.gz
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar.bz2
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar.lz
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar.xz
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.tar.zst
nixpkgs-880dcc684846ce5c650c1f19d50a8f57bd2c09e1.zip
zola: 0.12.2 -> 0.13.0
- Enable HTML minification
- Support `output_dir` in `config.toml`
- Allow sections to be drafted
- Allow specifying default language in filenames
- Render emoji in Markdown content if the `render_emoji` option is enabled
- Enable YouTube privacy mode for the YouTube shortcode
- Add language as class to the `<code>` block and as `data-lang`
- Add bibtex to `load_data`
- Add a `[markdown]` section to `config.toml` to configure rendering
- Add `highlight_code` and `highlight_theme` to a `[markdown]` section in `config.toml`
- Add `external_links_target_blank`, `external_links_no_follow` and `external_links_no_referrer`
- Add a `smart_punctuation` option in the `[markdown]` section in `config.toml` to turn elements like dots and dashes
into their typographic forms
- Add iteration count variable `nth` for shortcodes to know how many times a shortcode has been invoked in a given
content
- Update some highlighting syntaxes and the TS syntax will now be used instead of JS due to issues with it
- Remove `zola serve --watch-only`: since we build the HTML in memory and not on disk, it doesn't make sense anymore
- Update clojure syntax
- Prefer extra syntaxes to the default ones if we have a match for language
- Fix `zola serve` having issues with non-ascii paths
- 404 page now gets the site default language as `lang`
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/zola/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/zola/default.nix b/pkgs/applications/misc/zola/default.nix
index 377260a662d..63d5ba8d484 100644
--- a/pkgs/applications/misc/zola/default.nix
+++ b/pkgs/applications/misc/zola/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "zola";
-  version = "0.12.2";
+  version = "0.13.0";
 
   src = fetchFromGitHub {
     owner = "getzola";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256:0fb227kgani32ljnw73a0h5zn5361z5lraf79y34a0chcby2qv35";
+    sha256 = "sha256-yTvFQWmNxoB+CNZLHGmzJq7mKuOUxUqV4g8PWlOlRbM=";
   };
 
-  cargoSha256 = "sha256:0ilfr32zcajag05qcpwi5ixz250s427i4xrjf4wrk7qy32bblnr5";
+  cargoSha256 = "sha256:19vijhcs1i02jhz68acil7psv3pcn0jzi1i4y2l05i4m3ayxivjf";
 
   nativeBuildInputs = [ cmake pkg-config ];
   buildInputs = [ openssl oniguruma ]