File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 18
18
- Fix some of YAML date parsing
19
19
- Fix feed generation for languages not working in some cases (it was taking the value from the root of the config for
20
20
feed_filenames)
21
+ - Ignore ` .bck ` files in ` zola serve `
21
22
22
23
## 0.19.1 (2024-06-24)
23
24
Original file line number Diff line number Diff line change @@ -200,6 +200,8 @@ pub fn is_temp_file(path: &Path) -> bool {
200
200
x if x. ends_with ( "jb_bak___" ) => true ,
201
201
// vim & jetbrains
202
202
x if x. ends_with ( '~' ) => true ,
203
+ // helix
204
+ x if x. ends_with ( "bck" ) => true ,
203
205
_ => {
204
206
if let Some ( filename) = path. file_stem ( ) {
205
207
// emacs
Original file line number Diff line number Diff line change @@ -226,6 +226,7 @@ mod tests {
226
226
Path :: new( "hello.html~" ) ,
227
227
Path :: new( "#hello.html" ) ,
228
228
Path :: new( ".index.md.kate-swp" ) ,
229
+ Path :: new( "smtp.md0HlVyu.bck" ) ,
229
230
] ;
230
231
231
232
for t in test_cases {
You can’t perform that action at this time.
0 commit comments