aboutsummaryrefslogtreecommitdiff
path: root/parse_wiki_text/src/character_entity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'parse_wiki_text/src/character_entity.rs')
-rw-r--r--parse_wiki_text/src/character_entity.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/parse_wiki_text/src/character_entity.rs b/parse_wiki_text/src/character_entity.rs
new file mode 100644
index 0000000..018efa0
--- /dev/null
+++ b/parse_wiki_text/src/character_entity.rs
@@ -0,0 +1,22 @@
+// Copyright 2019 Fredrik Portström <https://portstrom.com>
+// This is free software distributed under the terms specified in
+// the file LICENSE at the top-level directory of this distribution.
+
+pub fn parse_character_entity(state: &mut crate::State, configuration: &crate::Configuration) {
+ if let Ok((match_length, character)) = configuration
+ .character_entities
+ .find(&state.wiki_text[state.scan_position + 1..])
+ {
+ let start_position = state.scan_position;
+ state.flush(start_position);
+ state.flushed_position = match_length + start_position + 1;
+ state.scan_position = state.flushed_position;
+ state.nodes.push(crate::Node::CharacterEntity {
+ character,
+ end: state.scan_position,
+ start: start_position,
+ });
+ } else {
+ state.scan_position += 1;
+ }
+}