diff options
Diffstat (limited to '')
-rw-r--r-- | src/compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.rs b/src/compiler.rs index 2a3f101..6f0215c 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -374,7 +374,7 @@ pub fn compile(events: &[Event], codes: &[Code], options: &CompileOptions) -> St CharacterReferenceKind::Named => decode_named(ref_string), }; - buf_tail_mut(buffers).push(value); + buf_tail_mut(buffers).push(encode(&value)); character_reference_kind = None; } |