1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Lightweight markdown detection utilities.
//!
//! Always available (no feature gate). Used by both the `chunking` and
//! `quality` features to detect markdown structure without pulling in
//! heavy dependencies.
use Lazy;
use Regex;
/// ATX heading pattern: 1-6 `#` characters followed by whitespace.
static MARKDOWN_HEADER_RE: = new;
/// Check whether a line is a markdown ATX header (`# ...` through `###### ...`).