about summary refs log tree commit homepage
path: root/lib/PublicInbox/HlMod.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-02-02 16:46:47 +0000
committerEric Wong <e@80x24.org>2019-02-05 10:58:35 +0000
commit60917f384645df7798a9b81ef26ca06df1986072 (patch)
tree377a4d90027be711cfa515d9cc4bb1d0d644ae5b /lib/PublicInbox/HlMod.pm
parent8eb2c4f7c0aed11810280c6dfa63f75fd961e3cd (diff)
downloadpublic-inbox-60917f384645df7798a9b81ef26ca06df1986072.tar.gz
We want to be able to take advantage of this in other modules
Diffstat (limited to 'lib/PublicInbox/HlMod.pm')
-rw-r--r--lib/PublicInbox/HlMod.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/PublicInbox/HlMod.pm b/lib/PublicInbox/HlMod.pm
index 13f27d19..014d82fd 100644
--- a/lib/PublicInbox/HlMod.pm
+++ b/lib/PublicInbox/HlMod.pm
@@ -16,6 +16,7 @@ package PublicInbox::HlMod;
 use strict;
 use warnings;
 use highlight; # SWIG-generated stuff
+use PublicInbox::Hval qw(src_escape);
 my $hl;
 
 sub _parse_filetypes ($) {
@@ -122,6 +123,7 @@ sub do_hl_lang {
         # know that, so ensure it's marked as UTF-8 even if it isnt...
         my $out = $gen->generateString($$str);
         utf8::decode($out);
+        src_escape($out);
         \$out;
 }