summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-12-23 11:18:51 +0100
committerYorhel <git@yorhel.nl>2020-12-23 11:18:51 +0100
commit8942de3f5d3a5b2f0e535984d627cdf254258472 (patch)
treecfe23594276c76a9ce75c6e15104c6f1c55e10b0 /lib
parenta2598083325f0895196810ecb4c971cfa5ab09b7 (diff)
TT::TagLinks: Add bbcode formatting to tag notes
Diffstat (limited to 'lib')
-rw-r--r--lib/VNWeb/TT/TagLinks.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNWeb/TT/TagLinks.pm b/lib/VNWeb/TT/TagLinks.pm
index 0948a309..656c6b77 100644
--- a/lib/VNWeb/TT/TagLinks.pm
+++ b/lib/VNWeb/TT/TagLinks.pm
@@ -40,7 +40,7 @@ sub listing_ {
a_ href => $url->(v => $i->{vid}, p=>undef), class => 'setfil', '> ' if !defined $opt->{v};
a_ href => "/v$i->{vid}", shorten $i->{title}, 50;
};
- td_ class => 'tc7', $i->{notes};
+ td_ class => 'tc7', sub { lit_ bb_format $i->{notes}, inline => 1 };
} for @$lst;
};
};