Basix
944cba030e
Allow to specify default language in filenames ( #1233 )
...
* Use default language if code is same as default
* Add test for specifying default locale
* Update docs to mention default languages
2020-12-14 20:43:31 +01:00
Ian Chen
cb75334498
fix typo ( #1229 )
2020-12-14 20:43:31 +01:00
Sam Vente
2154201fc6
Expand taxonomy documentation with movie example ( #1219 )
...
* Expand taxonomy documentation with movie example
* Fix typos
* Remove yaml syntax highlighting
Co-authored-by: Vincent Prouillet <balthek@gmail.com>
2020-12-14 20:43:31 +01:00
Vladislav Nikonov
b1091bbb45
Implemented emoji aliases support in markdown files ( #1194 )
...
* Implemented emoji aliases support in markdown files
* Added emoji aliases rendering unit tests
* Added bench for emoji
2020-12-14 20:43:31 +01:00
Vincent Prouillet
a26422d401
Update changelog
2020-12-14 20:43:31 +01:00
Sam Vente
c40fb91ba8
Make sections draftable ( #1218 )
...
* make sections draftable
* add documentation paragraph about drafting sections
2020-12-14 20:43:31 +01:00
Cthulhux
da37db1258
Enable YouTube privacy mode ( #1201 )
...
* Update themes gallery
* Enable YouTube privacy mode
As recommended: https://www.ghacks.net/2018/05/23/why-you-should-always-use-youtubes-privacy-enhanced-mode/
* Adjusted tests for privacy mode
Co-authored-by: GitHub Action <action@github.com>
Co-authored-by: Vincent Prouillet <balthek@gmail.com>
2020-12-14 20:43:27 +01:00
areille
6a31ccff99
Enable html minification ( #1208 )
...
* Next version
* Remove lines forcing minify_html to false
* Update documentation about minify_html
* Update changelog
Co-authored-by: Vincent Prouillet <balthek@gmail.com>
2020-12-14 20:42:55 +01:00
Christoph Grabo
6ef81940b8
Add language class to code tag
...
class attribute is only added if a language is available.
It uses the format "language-xxx" as per commonmark spec:
https://spec.commonmark.org/0.29/#example-112 ff.
2020-12-14 20:42:55 +01:00
Vincent Prouillet
bc3a41f56b
Update changelog
2020-12-14 20:42:55 +01:00
Takayuki Nakata
575c38f9c8
Support output_dir
in config.toml
2020-12-14 20:42:55 +01:00
Vladislav Nikonov
4f5d9bd8b0
Fixed site benches compilation
2020-12-14 20:42:55 +01:00
Vincent Prouillet
5233cc9585
Next version
2020-12-14 20:42:55 +01:00
Vincent Prouillet
fce3e4b8a0
Update themes gallery ( #1255 )
...
Co-authored-by: GitHub Action <action@github.com>
2020-12-08 19:25:33 +01:00
Fredrik
37e24c27f1
Get zola from alpine community repository ( #1251 )
...
Zola is not available in the `testing` repository, getting it from `community` instead
2020-12-06 21:43:23 +01:00
Jochen Kupperschmidt
ec3669dfd8
Add NorthCon e.V. to list of example sites ( #1248 )
...
Just three documents with a common base template and footer navigation.
2020-12-01 09:45:27 +01:00
Kiyan Mair
f5a200e64c
Fix RSS block example in documentation ( #1210 )
...
This commit fixes a bug in the documentation for the feeds page which
shows how to use the RSS block to enable feed autodiscovery.
The bug used an em space character instead of a space in one part of the
code snippet. If a user were to copy the code snippet into their code as
directed, the Zola build would fail with a parse error. The em space
appears identical to a regular space in monospaced fonts, making the
error seem mysterious or incorrect.
I believe the em space was used in order to prevent the shortcode from
rendering, as the code snippet is just meant to show what the shortcode
looks like. However, it is possible to escape the shortcode so that it
renders correctly without causing confusion for the user who expects to
be able to copy and paste it.
This commit replaces the em space in both code snippets with regular
spaces and escapes the shortcodes.
2020-10-21 13:00:16 +02:00
Vincent Prouillet
29b073640e
Merge pull request #1192 from getzola/create-pull-request/patch-1601714374
...
Update themes gallery
2020-10-03 21:00:41 +02:00
GitHub Action
531b48fd37
Update themes gallery
2020-10-03 08:39:18 +00:00
Vincent Prouillet
84ecd2ac5e
Merge pull request #1185 from getzola/next
...
Next version
2020-09-28 09:49:12 +02:00
Vincent Prouillet
94c016521c
Fix zola serve
2020-09-28 09:36:16 +02:00
Vincent Prouillet
0230e3297f
Next version
2020-09-27 14:15:44 +02:00
Vincent Prouillet
4bbf7a62a1
Merge pull request #1158 from getzola/next
...
Next version
2020-09-27 14:09:37 +02:00
Vincent Prouillet
2fa83af956
Set release date
2020-09-27 11:19:20 +02:00
Vincent Prouillet
7910363d63
Next version is 0.12.1
2020-09-26 14:23:24 +02:00
Vladislav Nikonov
ada6710c99
Fixed serve command failure caused by tokio-related issue ( #1183 )
2020-09-25 11:01:14 +02:00
Vincent Prouillet
664cb14ffd
Add test for continue reading after shortcode
2020-09-24 20:02:43 +02:00
Vincent Prouillet
59d9d26f0e
Fix shortcodes issues with newlines
...
Closes #1172
2020-09-24 20:02:43 +02:00
Vincent Prouillet
366e5c426f
Avoid panics when binding addresses
2020-09-22 12:22:26 +02:00
WhizSid
41e436f331
serve command exiting when web socket port is already in use ( #1179 )
...
* Handled web socket port used issue
* Lint
2020-09-22 11:59:57 +02:00
Vincent Prouillet
b313c97ceb
Fix slugified taxonomies rendering
...
Closes #1177
2020-09-22 09:46:22 +02:00
John-John Tedro
f9ae897190
Use platform-neutral path comparison for in-memory serving ( fixes #1169 ) ( #1175 )
...
This introduces `relative-path`, a crate I've written for the specific
purpose of providing platform-neutral operations over paths the same way
they are used in URLs.
This means that `///hello///` == `/hello`, which should do the same as
the existing stripping minus the platform-specific path separators
causing the [bug being referenced](#1169 ).
2020-09-22 09:46:22 +02:00
Tim Visée
c27f749a86
Fix #1165 , improve situation for compile_sass errors ( #1166 )
...
* Update compile_sass docs, this is just for sass files in site root
* Improve file watch error, question whether the target exists
2020-09-22 09:46:22 +02:00
Thomas Etter
f7cd28c8d2
Fix a crash when --output_dir is used with serve ( #1164 )
2020-09-22 09:46:22 +02:00
bemyak
d9396213de
Allow site path to contain underscores ( #1162 )
...
* Allow site path to contain underscores
Fixes site.css is not being generated if any part of the path contains
underscores
* Add tests for path with underscores
2020-09-22 09:46:22 +02:00
areille
5a61139719
Add better errors for minifying and upgrade crate
2020-09-22 09:46:22 +02:00
Alice Ryhl
826e701b4f
Add line highlighting to code blocks ( #1131 )
...
* Add line highlighting to code blocks
* Fix highlighting of lines
Apparently every line to be highlighted is provided in one chunk.
* Add more documentation to codeblock.rs
* Turn FenceIter into an Iterator
* Move Range to fence.rs
* Add tests
2020-09-22 09:46:22 +02:00
Vincent Prouillet
bff0193df7
Next version
2020-09-22 09:46:22 +02:00
Rafael Epplée
d04a52d096
Make gitlab CI example script faster ( #1171 )
...
By using alpine, the time to pull and start the container decreases.
By using the official alpine zola package, the script gets simpler.
Also, this updates the zola version to the latest release.
2020-09-18 15:35:38 +02:00
Maximilian Schoenenberg
9f367ae7e7
Added description for github actions ( #1163 )
...
* Added description for github actions
* Added specific version and removed outdated sentence regarding branch naming
2020-09-14 10:36:56 +02:00
Vincent Prouillet
9aa35150ae
Merge pull request #1159 from sburris0/master
...
Add Void Linux installation instructions
2020-09-06 11:46:10 +02:00
Spencer Burris
924100f011
Add Void Linux installation instructions
2020-09-05 10:28:44 -07:00
Vincent Prouillet
2d1c954322
Merge pull request #1038 from getzola/next
...
Next version
2020-09-04 23:42:30 +02:00
Vincent Prouillet
935c4a595c
Update changelog
2020-09-04 23:39:12 +02:00
Spencer Burris
428b5942c7
Fix documentation typos ( #1157 )
2020-09-04 22:53:31 +02:00
Vincent Prouillet
b854ccae28
Prepare for release
2020-09-04 22:42:07 +02:00
Vincent Prouillet
ba240cd27f
Change min Rust version in docs
2020-09-03 21:25:42 +02:00
Vincent Prouillet
f786783299
Update pulldown_cmark
2020-09-03 21:22:20 +02:00
René Ribaud
5bf1687fa7
Use trim_start_matches instead of strip_prefix ( #1156 )
...
- This allow to not bump the pinned version to 1.45.0.
- Change this, despite trim_start_matches returns a &str and not an Option, which I
like less.
2020-09-03 10:47:48 +02:00
Vincent Prouillet
d1ca1e3e3e
Update themes gallery ( #1153 )
...
Co-authored-by: GitHub Action <action@github.com>
2020-09-02 19:34:02 +02:00