Merge pull request #892 from integer32llc/fix-warnings
Fix deprecation warnings for trim left/right matches
This commit is contained in:
commit
cb94053779
|
@ -61,7 +61,7 @@ pub fn id_from_content(content: &str) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove spaces and hashes indicating a header
|
// Remove spaces and hashes indicating a header
|
||||||
let trimmed = content.trim().trim_left_matches('#').trim();
|
let trimmed = content.trim().trim_start_matches('#').trim();
|
||||||
|
|
||||||
normalize_id(trimmed)
|
normalize_id(trimmed)
|
||||||
}
|
}
|
||||||
|
|
|
@ -423,8 +423,8 @@ mod search {
|
||||||
fn read_book_index(root: &Path) -> serde_json::Value {
|
fn read_book_index(root: &Path) -> serde_json::Value {
|
||||||
let index = root.join("book/searchindex.js");
|
let index = root.join("book/searchindex.js");
|
||||||
let index = file_to_string(index).unwrap();
|
let index = file_to_string(index).unwrap();
|
||||||
let index = index.trim_left_matches("window.search = ");
|
let index = index.trim_start_matches("window.search = ");
|
||||||
let index = index.trim_right_matches(";");
|
let index = index.trim_end_matches(";");
|
||||||
serde_json::from_str(&index).unwrap()
|
serde_json::from_str(&index).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue