]> Sergey Matveev's repositories - public-inbox.git/commitdiff
hlmod: hoist out do_hl_lang sub
authorEric Wong <e@80x24.org>
Sat, 2 Feb 2019 06:02:41 +0000 (06:02 +0000)
committerEric Wong <e@80x24.org>
Tue, 5 Feb 2019 10:58:29 +0000 (10:58 +0000)
We'll want to use to support highlighting syntax used by
Markdown and possibly other markup languages (while retaining
the raw plain-text layout and formatting).

lib/PublicInbox/HlMod.pm
t/hl_mod.t

index decfd714d7ba5e0551b125de94cf16d056642ca6..284e4b1896d46db23fe73613849604448f9c49ec 100644 (file)
@@ -83,19 +83,24 @@ sub _path2lang ($$) {
 sub do_hl {
        my ($self, $str, $path) = @_;
        my $lang = _path2lang($self, $path) if defined $path;
+       do_hl_lang($self, $str, $lang);
+}
+
+sub do_hl_lang {
+       my ($self, $str, $lang) = @_;
+
        my $dir = $self->{-dir};
        my $langpath;
+
        if (defined $lang) {
                $langpath = $dir->getLangPath("$lang.lang") or return;
-               $langpath = undef unless -f $langpath;
+               $lang = undef unless -f $langpath
        }
-       unless (defined $langpath) {
+       unless (defined $lang) {
                $lang = _shebang2lang($self, $str) or return;
                $langpath = $dir->getLangPath("$lang.lang") or return;
-               $langpath = undef unless -f $langpath;
+               return unless -f $langpath
        }
-       return unless defined $langpath;
-
        my $gen = $self->{$langpath} ||= do {
                my $g = highlight::CodeGenerator::getInstance($highlight::HTML);
                $g->setFragmentCode(1); # generate html fragment
index c402f1f784f40b3963b53407d706e9bf4d7d93df..238f8ec55b5c23a18ae7a82e9c008fe22ec7f06a 100644 (file)
@@ -22,6 +22,8 @@ my $orig = $str;
        ok(utf8::valid($$ref), 'resulting string is utf8::valid');
        like($$ref, qr/I can see you!/, 'we can see ourselves in output');
        like($$ref, qr/&amp;&amp;/, 'escaped');
+       my $lref = $hls->do_hl_lang(\$str, 'perl');
+       is($$ref, $$lref, 'do_hl_lang matches do_hl');
 
        use PublicInbox::Spawn qw(which);
        if (eval { require IPC::Run } && which('w3m')) {