pub fn parse_heading_line(line: &str) -> Option<(usize, &str)>
Parses a single line as an ATX heading (# through ###### ).
#
######
Returns (level, text) if the line is a heading, or None otherwise.
(level, text)
None