diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-29 13:17:59 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | e39b3297d81720b60fb4c23eca73c02a13bfc82a (patch) | |
tree | e95f3f45934da92c7d883fc0618fb9dbbd23adbe /README.md | |
parent | bb7c64a8245769f20742502cfa942f33ccb08af7 (diff) |
break!: make DefaultEmitter::emit_eof emit EndOfFile
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ for token in NaiveParser::new(html).flatten() { Token::EndTag(tag) => { write!(new_html, "</{}>", tag.name).unwrap(); } + Token::EndOfFile => {}, _ => panic!("unexpected input"), } } |