//! Heading (atx) is a construct that occurs in the [flow] content type. //! //! They’re formed with the following BNF: //! //! ```bnf //! heading_atx ::= 1*6'#' [ 1*space_or_tab text [ 1*space_or_tab 1*'#' ] ] *space_or_tab //! //! text ::= code - eol //! space_or_tab ::= ' ' | '\t' //! ``` //! //! Headings in markdown relate to the `

` through `

` elements in HTML. //! See [*§ 4.3.6 The `h1`, `h2`, `h3`, `h4`, `h5`, and `h6` elements* in the //! HTML spec][html] for more info. //! //! `CommonMark` introduced the requirement on whitespace existing after the //! opening sequence and before text. //! In older markdown versions, this was not required, and headings would form //! without it. //! //! In markdown, it is also possible to create headings with a //! [heading (setext)][heading_setext] construct. //! The benefit of setext headings is that their text can include line endings, //! and by extensions also hard breaks (e.g., with //! [hard break (escape)][hard_break_escape]). //! However, their limit is that they cannot form `

` through `

` //! headings. //! Due to this limitation, it is recommended to use atx headings. //! //! > 🏛 **Background**: the word *setext* originates from a small markup //! > language by Ian Feldman from 1991. //! > See [*§ Setext* on Wikipedia][wiki-setext] for more info. //! > The word *atx* originates from a tiny markup language by Aaron Swartz //! > from 2002. //! > See [*§ atx, the true structured text format* on `aaronsw.com`][atx] for //! > more info. //! //! ## Tokens //! //! * [`HeadingAtx`][Name::HeadingAtx] //! * [`HeadingAtxSequence`][Name::HeadingAtxSequence] //! * [`HeadingAtxText`][Name::HeadingAtxText] //! * [`SpaceOrTab`][Name::SpaceOrTab] //! //! ## References //! //! * [`heading-atx.js` in `micromark`](https://github.com/micromark/micromark/blob/main/packages/micromark-core-commonmark/dev/lib/heading-atx.js) //! * [*§ 4.2 ATX headings* in `CommonMark`](https://spec.commonmark.org/0.30/#atx-headings) //! //! [flow]: crate::content::flow //! [heading_setext]: crate::construct::heading_setext //! [hard_break_escape]: crate::construct::hard_break_escape //! [html]: https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements //! [wiki-setext]: https://en.wikipedia.org/wiki/Setext //! [atx]: http://www.aaronsw.com/2002/atx/ use crate::constant::{HEADING_ATX_OPENING_FENCE_SIZE_MAX, TAB_SIZE}; use crate::construct::partial_space_or_tab::{space_or_tab, space_or_tab_min_max}; use crate::event::{Content, Event, Kind, Name}; use crate::resolve::Name as ResolveName; use crate::state::{Name as StateName, State}; use crate::tokenizer::Tokenizer; /// Start of a heading (atx). /// /// ```markdown /// > | ## aa /// ^ /// ``` pub fn start(tokenizer: &mut Tokenizer) -> State { if tokenizer.parse_state.constructs.heading_atx { tokenizer.enter(Name::HeadingAtx); let name = space_or_tab_min_max( tokenizer, 0, if tokenizer.parse_state.constructs.code_indented { TAB_SIZE - 1 } else { usize::MAX }, ); tokenizer.attempt(name, State::Next(StateName::HeadingAtxBefore), State::Nok) } else { State::Nok } } /// Start of a heading (atx), after whitespace. /// /// ```markdown /// > | ## aa /// ^ /// ``` pub fn before(tokenizer: &mut Tokenizer) -> State { if Some(b'#') == tokenizer.current { tokenizer.enter(Name::HeadingAtxSequence); State::Retry(StateName::HeadingAtxSequenceOpen) } else { State::Nok } } /// In the opening sequence. /// /// ```markdown /// > | ## aa /// ^ /// ``` pub fn sequence_open(tokenizer: &mut Tokenizer) -> State { match tokenizer.current { None | Some(b'\n') if tokenizer.tokenize_state.size > 0 => { tokenizer.tokenize_state.size = 0; tokenizer.exit(Name::HeadingAtxSequence); State::Retry(StateName::HeadingAtxAtBreak) } Some(b'#') if tokenizer.tokenize_state.size < HEADING_ATX_OPENING_FENCE_SIZE_MAX => { tokenizer.tokenize_state.size += 1; tokenizer.consume(); State::Next(StateName::HeadingAtxSequenceOpen) } _ if tokenizer.tokenize_state.size > 0 => { tokenizer.tokenize_state.size = 0; tokenizer.exit(Name::HeadingAtxSequence); let name = space_or_tab(tokenizer); tokenizer.attempt(name, State::Next(StateName::HeadingAtxAtBreak), State::Nok) } _ => { tokenizer.tokenize_state.size = 0; State::Nok } } } /// After something but before something else. /// /// ```markdown /// > | ## aa /// ^ /// ``` pub fn at_break(tokenizer: &mut Tokenizer) -> State { match tokenizer.current { None | Some(b'\n') => { tokenizer.exit(Name::HeadingAtx); tokenizer.register_resolver(ResolveName::HeadingAtx); // Feel free to interrupt. tokenizer.interrupt = false; State::Ok } Some(b'\t' | b' ') => { let name = space_or_tab(tokenizer); tokenizer.attempt(name, State::Next(StateName::HeadingAtxAtBreak), State::Nok) } Some(b'#') => { tokenizer.enter(Name::HeadingAtxSequence); State::Retry(StateName::HeadingAtxSequenceFurther) } Some(_) => { tokenizer.enter_with_content(Name::Data, Some(Content::Text)); State::Retry(StateName::HeadingAtxData) } } } /// In a further sequence (after whitespace). /// /// Could be normal “visible” hashes in the heading or a final sequence. /// /// ```markdown /// > | ## aa ## /// ^ /// ``` pub fn sequence_further(tokenizer: &mut Tokenizer) -> State { if let Some(b'#') = tokenizer.current { tokenizer.consume(); State::Next(StateName::HeadingAtxSequenceFurther) } else { tokenizer.exit(Name::HeadingAtxSequence); State::Retry(StateName::HeadingAtxAtBreak) } } /// In text. /// /// ```markdown /// > | ## aa /// ^ /// ``` pub fn data(tokenizer: &mut Tokenizer) -> State { match tokenizer.current { // Note: `#` for closing sequence must be preceded by whitespace, otherwise it’s just text. None | Some(b'\t' | b'\n' | b' ') => { tokenizer.exit(Name::Data); State::Retry(StateName::HeadingAtxAtBreak) } _ => { tokenizer.consume(); State::Next(StateName::HeadingAtxData) } } } /// Resolve heading (atx). pub fn resolve(tokenizer: &mut Tokenizer) { let mut index = 0; let mut heading_inside = false; let mut data_start: Option = None; let mut data_end: Option = None; while index < tokenizer.events.len() { let event = &tokenizer.events[index]; if event.name == Name::HeadingAtx { if event.kind == Kind::Enter { heading_inside = true; } else { if let Some(start) = data_start { // If `start` is some, `end` is too. let end = data_end.unwrap(); tokenizer.map.add( start, 0, vec![Event { kind: Kind::Enter, name: Name::HeadingAtxText, point: tokenizer.events[start].point.clone(), link: None, }], ); // Remove everything between the start and the end. tokenizer.map.add(start + 1, end - start - 1, vec![]); tokenizer.map.add( end + 1, 0, vec![Event { kind: Kind::Exit, name: Name::HeadingAtxText, point: tokenizer.events[end].point.clone(), link: None, }], ); } heading_inside = false; data_start = None; data_end = None; } } else if heading_inside && event.name == Name::Data { if event.kind == Kind::Enter { if data_start.is_none() { data_start = Some(index); } } else { data_end = Some(index); } } index += 1; } }