Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/frontmatter.rs')
| -rw-r--r-- | crates/parser/src/frontmatter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/frontmatter.rs b/crates/parser/src/frontmatter.rs index 2747db4327..1edcad64cf 100644 --- a/crates/parser/src/frontmatter.rs +++ b/crates/parser/src/frontmatter.rs @@ -263,7 +263,7 @@ pub fn strip_ws_lines(input: &str) -> Option<usize> { /// True if `c` is considered a whitespace according to Rust language definition. /// See [Rust language reference](https://doc.rust-lang.org/reference/whitespace.html) /// for definitions of these classes. -fn is_whitespace(c: char) -> bool { +pub(crate) fn is_whitespace(c: char) -> bool { // This is Pattern_White_Space. // // Note that this set is stable (ie, it doesn't change with different |