Vincent Prouillet
fcbb21abca
Replace libsass by grass
...
Closes #1535
Closes #2022
2023-02-16 20:49:03 +01:00
Vincent Prouillet
c22ee676d3
Update some deps
2023-02-16 20:49:03 +01:00
David Reed
a7433a58d5
Expose markdown
config property to templates ( #2052 )
...
* Expose the markdown config property to templates
* Document additional strategies for linking code-highlight stylesheets
2023-02-16 20:49:03 +01:00
Felix Zwettler
d0b80654d1
add preserve_dotfiles_in_output configuration option ( #1985 )
2023-02-16 20:49:03 +01:00
Sosthène Guédon
3430d948f7
Fix needless_borrow warnings
2023-02-16 20:49:03 +01:00
Sosthène Guédon
76ca540142
markdown: Fix clippy warnings
2023-02-16 20:49:03 +01:00
Sosthène Guédon
53114533ff
imageproc: Fix clippy warning
2023-02-16 20:49:03 +01:00
Sosthène Guédon
e290616fad
content: Fix clippy warnings
2023-02-16 20:49:03 +01:00
Sosthène Guédon
3ef719af6a
templates: Fix clippy warning
2023-02-16 20:49:03 +01:00
Sosthène Guédon
f877835ed3
Site: fix clippy warnings
2023-02-16 20:49:03 +01:00
Sosthène Guédon
0183ea548a
Fix clippy::manual_retain
2023-02-16 20:49:03 +01:00
Sosthène Guédon
faf00d1047
Fix clippy::derive_partial_eq_without_eq
2023-02-16 20:49:03 +01:00
Soso
405dda6722
Cargo fmt ( #2009 )
...
* Run cargo fmt
* Add cargo fmt --check to pipeline
2023-02-16 20:49:03 +01:00
mscherer
da5c4c496a
Filter more than 1 footnote in summary ( #2017 )
...
If the summary contains more than 1 footnote, only the 1st is
removed, and so dangling links exists for all the others.
2023-02-16 20:49:03 +01:00
Sosthene
7000f787b3
Search json index ( #1998 )
...
* search: Add support for a JSON index
* docs: Document JSON index for search
* docs: Use lazy-loaded JSON index
* Add elasticlunr prefix to search engine format configuration
This will be useful if support for more search libraries are added in the future
2023-02-16 20:49:03 +01:00
mscherer
291c93e4ba
Do not overfilter HTML when removing footnotes ( #2008 )
...
If the summary contain HTML using <sup> like "the 1<sup>st</<sup>", it get
filtered as the regexp that remove footnotes is not precise
enough to remove just the footnotes.
2023-02-16 20:49:03 +01:00
Ever
a0f7dfed97
Fix current_url in taxonomy term ( #2000 )
...
* Fix current_url in taxonomy term
* add tests
2023-02-16 20:49:03 +01:00
Vincent Prouillet
442d6222a6
Fix test
2023-02-16 20:49:03 +01:00
Jeremy Barbosa
bedc6d7148
Minify embedded css and js with additional lib flags ( #1922 )
2023-02-16 20:49:03 +01:00
n-tux-tmp
baa473ceea
add get_hash function ( #1962 )
...
Co-authored-by: Newbyte <newbie13xd@gmail.com>
Co-authored-by: n-tux-tmp <n-tux-tmp@example.com>
Co-authored-by: n-tux-tmp <n-tux-tmp@noreply.example.org>
2023-02-16 20:49:03 +01:00
Ana Hobden
f1b5c2ea74
Use BufWriter in imageproc ( #1996 )
...
According to
https://docs.rs/image/0.24.3/image/enum.DynamicImage.html#method.write_to ,
it assumes a buffered writer, so we should provide one.
Signed-off-by: Ana Hobden <operator@hoverbear.org>
2023-02-16 20:49:03 +01:00
Vincent Prouillet
9e0f4002b3
Handle colocated links to assets
...
Solves #1993
2023-02-16 20:49:03 +01:00
ZettaScript
4a6d13f2cb
Tera date-locale feature ( #1978 )
2023-02-16 20:49:03 +01:00
bemyak
aecbc10c9b
Add sorting by slug ( #1926 )
2023-02-16 20:49:03 +01:00
Vincent Prouillet
ee961056c8
Simplify taxonomy term struct
2023-02-16 20:49:03 +01:00
Eric Scouten
5fb0867b3a
Get term fn ( #1964 )
...
* Add new `get_taxonomy_term` global function
* Update per @Keats feedback to make `page_count` available all the time.
2023-02-16 20:49:03 +01:00
Andrew Browne
7b562fcd2c
Add slugify.paths_keep_dates option. Update docs.
...
Manual testing:
Existing test_site/config.toml
http://127.0.0.1:1111/posts/a-post-with-dates
====
--- a/test_site/config.toml
+++ b/test_site/config.toml
@@ -18,6 +18,7 @@ extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
[slugify]
paths = "on"
+paths_keep_dates = true
taxonomies = "on"
anchors = "on"
http://127.0.0.1:1111/posts/2016-10-08-a-post-with-dates
====
--- a/test_site/config.toml
+++ b/test_site/config.toml
@@ -17,7 +17,8 @@ highlight_theme = "custom_gruvbox"
extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
[slugify]
-paths = "on"
+paths = "off"
+paths_keep_dates = true
taxonomies = "on"
anchors = "on"
http://127.0.0.1:1111/posts/2016-10-08_a-post-with-dates
====
--- a/test_site/config.toml
+++ b/test_site/config.toml
@@ -17,7 +17,8 @@ highlight_theme = "custom_gruvbox"
extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
[slugify]
-paths = "on"
+paths = "safe"
+paths_keep_dates = true
taxonomies = "on"
anchors = "on"
http://127.0.0.1:1111/posts/2016-10-08_a-post-with-dates
2023-02-16 20:49:03 +01:00
Joel Montes de Oca
567f103ee3
Imporved is_colocated_asset_links ( #1972 )
...
This PR includes the following:
- Added a check for `../` which would check to see if a file is in a
_sub_ directory
- Wrote test for `is_colocated_asset_links`
This PR is similare to PR #1969
2023-02-16 20:49:03 +01:00
Vincent Prouillet
584de3adaf
Remove logging
2022-08-14 16:08:48 +02:00
Nick Darnell
3fde41b6e5
The Glob library does not work correctly on windows. This changes the approach to use the normal WalkDir crate, and the Globset crate instead to find the filter. This new code correctly compiles sass files across platforms now. ( #1950 )
2022-08-14 16:08:48 +02:00
Vincent Prouillet
2a445fa4dc
Update deps
2022-08-14 16:08:48 +02:00
Radovan Bast
f61e1ba9a2
parse also *.yml file suffix as YAML; closes #1958 ( #1959 )
...
previously only files with *.yaml suffix were recognized as YAML
2022-08-14 16:08:48 +02:00
Vincent Prouillet
abafe66a51
Fix overriding built-in shortcodes
...
Closes #1947
2022-08-14 16:08:48 +02:00
Tristam MacDonald
93d61cdf72
remove string manipulation of paths ( #1941 )
...
* remove string manipulation of paths
2022-08-14 16:08:48 +02:00
Vincent Prouillet
18c62315cf
Lowercase config.mode
2022-08-14 16:08:48 +02:00
Andrew Browne
e4bab1f21c
Cleanup code to generate page slug. ( #1936 )
2022-08-14 16:08:48 +02:00
Vincent Prouillet
3fa855267e
Ensure homepages get their translations filled
2022-07-15 18:00:55 +02:00
Vincent Prouillet
0d4c2e813f
Fix some bugs + cargo fmt
2022-07-12 00:09:38 +02:00
Vincent Prouillet
bf7dbfeaae
Update pinned rustc version
2022-07-10 16:54:00 +02:00
Vincent Prouillet
342569a92a
Update deps
2022-07-10 16:31:09 +02:00
Vincent Prouillet
7208b86d77
Insert anchor as full heading ( #1916 )
...
* Add insert_anchor = "heading"
* Update CHANGELOG.md
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
2022-07-10 15:02:07 +02:00
bemyak
065e8e64e5
Apply orientation transformation based on EXIF data ( #1912 )
2022-07-07 23:19:13 +02:00
Vincent Prouillet
cec65d0fa7
Stop printing invalid files in dirs
...
Too many invalid stuff like emacs files
2022-06-23 20:56:42 +02:00
Arnaud Grandville
18e8246fbc
fix windows EOL in markdown files ( #1911 )
...
* add a test
* CodeBlock text may be split on multiple parts
The CodeBlock text events are now concatenated and processed in a single stream at the end. cf https://github.com/raphlinus/pulldown-cmark/issues/457
2022-06-23 19:36:33 +02:00
Phil Lord
4f6a1c6bcc
Properly escape anchor names ( #1908 )
2022-06-21 19:08:16 +02:00
Phil Lord
afc6a71a79
Allow new lines before anchor ( #1905 )
...
Previously the heuristic check for links required spaces before the
attribute to ensure that attributes suffixed with `id` were not
identified. This has now been expanded to any white space character to
enable the `id` attribute to start on a new line.
2022-06-21 15:53:07 +02:00
Vincent Prouillet
5873e0319c
Add title_bytes sorting method
2022-06-13 23:37:39 +02:00
Vincent Prouillet
4da81eb17e
Fix feed location for taxonomies not in the default language
2022-06-13 22:34:47 +02:00
bemyak
d4b5c4fdc4
Make robots.txt compliant with RFC ( #1895 )
...
The [RFC](http://www.robotstxt.org/orig.html ) mentions only `Disallow`
directive, so it must appear in the file.
`Allow` is an ad hoc agreement between search engines that no all of
them follow.
2022-06-12 21:41:38 +02:00
Vincent Prouillet
094900777b
Do not assume themes are present for CSS export
...
Closes #1884
2022-06-10 20:54:21 +02:00
Vincent Prouillet
04ee5c85a3
Reenable link rewriting for colocated assets
...
All credits go to https://github.com/getzola/zola/pull/1779
2022-06-10 20:41:24 +02:00
Vincent Prouillet
e8fe51a344
Update changelog and deps
2022-06-10 20:14:38 +02:00
bemyak
49b310764a
Always follow symlinks ( #1883 )
2022-06-09 21:47:52 +02:00
bemyak
8029cf891a
Fix taxonomy current path ( #1882 )
...
* Fix current_path and current_url for taxonomies
* Fix language duplication in get_url fn
2022-06-09 21:47:03 +02:00
bemyak
6989eb73ab
Fix clippy lint warnings ( #1888 )
2022-06-04 20:29:33 +02:00
Matt Ickstadt
e9e6cadc6c
Update to elasticlunr-rs 3.0.0 ( #1873 )
2022-06-03 23:25:42 +02:00
Jake G
ed296d72a1
Your message ( #1880 )
2022-06-03 22:44:29 +02:00
Laurențiu Nicola
a385dbae29
Add rel="alternate"
to Atom post links ( #1868 )
...
This improves compatibility with some readers, e.g. Miniflux, which otherwise don't detect these.
2022-05-21 23:28:58 +02:00
Vincent Prouillet
76b0b5f5dd
Clippy
2022-05-11 22:34:36 +02:00
Vincent Prouillet
1a3b783120
DRY up the external link checking a bit
2022-05-11 22:31:54 +02:00
Michael Clayton
6240ed5469
add link_checker settings for external_level and internal_level ( #1848 )
...
* add external_level and internal_level
* remove unnecessary debug derive on LinkDef
* clarify doc comment about link check levels
* simplify link checker logging
* add missing warn prefix
* simplify link level logging, remove "Level" from linklevel variants
* remove link level config from test site
* switch back to using bail! from get_link_domain
* move console's deps to libs
* remove unnecessary reference
* calling console::error/warn directly
* emit one error, or one warning, per link checker run
* various link checker level changes
* add docs about link checker levels
* remove accidentally committed test site
* remove completed TODO
2022-05-11 21:54:34 +02:00
Vincent Prouillet
2291c6e9c3
Fix tests
2022-05-10 22:33:57 +02:00
Vincent Prouillet
beb93f2b0a
Expose backlinks
2022-05-08 14:10:29 +02:00
Vincent Prouillet
413a68d8b2
Fix tests
2022-05-06 22:55:29 +02:00
Vincent Prouillet
e0043a7351
Ignore section with render=false when looking for path collisions
...
Closes #1656
2022-05-06 22:45:05 +02:00
Vincent Prouillet
a958305e58
Clone Zola Tera instance for Markdown filter
2022-05-06 22:16:56 +02:00
Vincent Prouillet
ee8de20a6e
Update syntect
2022-05-05 23:41:06 +02:00
Vincent Prouillet
bdbe73e23e
Clippy
2022-05-02 23:05:08 +02:00
Vincent Prouillet
df9061b5a0
Avoid cloning components when rendering feed
2022-05-02 23:01:57 +02:00
Vincent Prouillet
a297b11f2a
More efficient sitemap building
2022-05-02 22:51:01 +02:00
Vincent Prouillet
a0630efb76
Rename links utils mod
2022-05-02 22:07:47 +02:00
Vincent Prouillet
e8b04bb11a
Serialize transparent field in section front-matter
...
Closes #1840
2022-05-02 21:55:43 +02:00
Vincent Prouillet
bad0127c9f
Build taxonomies as pages are added ( #1841 )
2022-05-02 16:51:46 +02:00
Ken "Elf" Mathieu Sternberg
77eb9fef9b
Create pull request/add yaml to load data ( #1842 )
...
* Add YAML to formats supported by load_data()
A fairly trivial addition; JSON and YAML are handled so similarly
that this was a matter of copying the JSON-relevant handlers and
editing the copies to handle YAML as well. The test file was
literally generated with 'json2yaml'.
The documentation has been updated to indicate that load_data() now
handles YAML code.
The CHANGELOG has been updated as well.
* After checking, I found that it's generally agreed the mime type is still application/x-yaml.
* Update comment, unify library importing.
I noticed one more place where the list of formats was supported,
and added YAML to that list.
I noticed that there's a singular place to load the `libs::` crate,
and unified by importing of serde_yaml in that place.
2022-04-29 20:22:02 +02:00
Vincent Prouillet
3a0800c702
Pass content_path to populate_library
2022-04-27 22:27:19 +02:00
Vincent Prouillet
84951d39e3
Allow taxonomies to not be rendered
...
Closes #1750
2022-04-27 21:11:42 +02:00
Vincent Prouillet
844576e32e
Remove unused deps thanks to cargo-machete
2022-04-27 19:49:57 +02:00
Vincent Prouillet
27a200bb4e
Some more refactoring
2022-04-26 23:13:27 +02:00
Vincent Prouillet
6851ade642
Print path on metadata call failure
2022-04-26 22:38:00 +02:00
Vincent Prouillet
c14b1fa746
Remove duplicate code
2022-04-26 22:27:20 +02:00
Vincent Prouillet
9ab1bf2e4e
Re-organise content and remove slotmap indirection level ( #1827 )
2022-04-26 20:51:04 +02:00
Michael Clayton
92e80b5451
apply skip_prefixes before parsing external link domain ( #1833 )
...
* apply skip_prefixes before parsing external link domain
* log number of links skipped by skip_prefixes
2022-04-26 20:07:50 +02:00
Vincent Prouillet
c11ae6ef28
Use anyhow ( #1816 )
...
Also fixes #1783
2022-04-01 21:37:38 +02:00
Vincent Prouillet
62a0e7b1fd
Update deps
2022-03-23 10:00:55 +01:00
Spencer Scorcelletti
a13d41b47c
Allow load_data to take a literal ( #1794 ) ( #1794 )
...
* Add `literal` as a new entry for `data source`, to be used by the `load_data` function
* Add tests to the module for plain text, json, xml, toml, and csv
* Update error messaging to include literal as a potential choice
* Update site documentation to include instructions for using `load_data` with a literal
2022-03-21 10:15:24 +01:00
Michael Clayton
336a2716e0
switch from chrono to time ( #1790 )
...
* switch from chrono to time
* remove some unused time features
* get utc offset before threading begins
2022-03-20 22:01:01 +01:00
Vincent Prouillet
1f5a524c12
Load extra themes even with theme=css
...
Closes #1775
2022-03-15 11:32:32 +01:00
Vincent Prouillet
2feda3ec61
Update deps
2022-03-04 21:36:35 +01:00
doomy
88e0624f11
Added XML support for load_data ( #1769 )
...
Co-authored-by: doomy <2640792-_doomy@users.noreply.gitlab.com>
2022-03-04 21:28:08 +01:00
Vincent Prouillet
a67370b8d8
Update pulldown_cmark
2022-03-04 00:16:48 +01:00
Vincent Prouillet
40d7208493
Refactoring rendering tests
2022-03-03 12:41:19 +01:00
Sam Vente
dde3531fd9
Make sure that zola serve/build can start from anywhere inside dir tree ( #1761 )
...
* Make sure that zola serve/build can start from anywhere inside dir tree
* make clippy and rustfmt a bit happier
* replace unecessary if-else with unwrap_or and display which path could not get canonicalized if it fails at startup
* canonicalize config_path to avoid crash when config.toml changes
2022-03-03 12:35:29 +01:00
southerntofu
fb347c2e02
Bugfix check links i18n ( close #1694 ) ( #1780 )
...
* Treat _index.LANG.md as section, not page (close #1694 )
Display more advanced information in case of a future crash here
* Add link to translated local section in test_site_i18n to catch #1694
It appears linking to another translated page does not trigger the bug,
but linking to a section within the same (translated) page does.
* Allow (and test for) homepage internal links in broken link detection
Co-authored-by: southerntofu <southerntofu@thunix.net>
2022-02-26 21:56:33 +01:00
Michael Clayton
a13279ea39
ignore links to '#' ( #1756 )
2022-02-14 11:08:40 +01:00
Kartavya Vashishtha
a5890a9901
Make ignored_content work with nested paths and directories ( #1738 )
...
* Make ignored_content work with directories
Just had to remove strip_prefix(path) from file ignore code.
Added tests for subdirectory globbing.
* Add documentation
* add more tests
to confim that simple filename globs still match paths
without strip_prefix
2022-02-14 11:08:40 +01:00
Vincent Prouillet
ae3a8b802e
Add libs subcrate ( #1747 )
...
* Add libs subcrate
* Remove last direct lazy_static usage
* Update pinned ci version
* Update deps
2022-02-14 11:08:40 +01:00
Michael Clayton
78b19d7133
Fix markup for fenced code with linenos ( #1746 )
...
* fix fenced code blocks with linenos and minify_html
* fix test cases involving linenos
2022-02-14 11:08:40 +01:00
Vincent Prouillet
4bcbf2a545
Update deps
2022-02-14 11:08:40 +01:00
Jeremy Kerr
1b20acabde
config: Don't skip extra syntax loading if highlight_theme = css ( #1732 )
...
Currently, init_extra_syntaxtes_and_highlight_themes will supress
loading anything if highlight_theme is "css". This makes sense for the
highlight themes, but will also skip loading any extra syntax
definitions too.
This change defers the theme = css check, so we still load syntaxes in
this case.
Fixes : #1723
Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au>
2022-01-23 14:33:51 +01:00
liushuyu
684bc2dd74
Fix shortcode handling in code-fences ( #1720 )
...
* rendering/markdown: fix shortcode handling in codefences
* rendering/tests: add a bunch of tests for codefence + shortcode usages
2022-01-23 14:33:51 +01:00