aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/state.rs b/src/state.rs
index dcabbd7..1d15239 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -197,6 +197,9 @@ pub enum Name {
GfmFootnoteDefinitionStart,
GfmFootnoteDefinitionLabelBefore,
+ GfmFootnoteDefinitionLabelAtMarker,
+ GfmFootnoteDefinitionLabelInside,
+ GfmFootnoteDefinitionLabelEscape,
GfmFootnoteDefinitionLabelAfter,
GfmFootnoteDefinitionWhitespaceAfter,
GfmFootnoteDefinitionContStart,
@@ -652,6 +655,11 @@ pub fn call(tokenizer: &mut Tokenizer, name: Name) -> State {
Name::GfmFootnoteDefinitionStart => construct::gfm_footnote_definition::start,
Name::GfmFootnoteDefinitionLabelBefore => construct::gfm_footnote_definition::label_before,
+ Name::GfmFootnoteDefinitionLabelAtMarker => {
+ construct::gfm_footnote_definition::label_at_marker
+ }
+ Name::GfmFootnoteDefinitionLabelInside => construct::gfm_footnote_definition::label_inside,
+ Name::GfmFootnoteDefinitionLabelEscape => construct::gfm_footnote_definition::label_escape,
Name::GfmFootnoteDefinitionLabelAfter => construct::gfm_footnote_definition::label_after,
Name::GfmFootnoteDefinitionWhitespaceAfter => {
construct::gfm_footnote_definition::whitespace_after