Skip to content

Commit eadfae7

Browse files
authored
Merge pull request doxygen#11643 from albert-github/feature/bug_biblio_back
Handling of backticks in bibliography
2 parents 8ac72d9 + a6e7a07 commit eadfae7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

templates/html/bib2xhtml.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ sub html_ent {
119119
s/\\rceil\b/⌉/g;
120120
s/\\lfloor\b/⌊/g;
121121
s/\\rfloor\b/⌋/g;
122+
s/``/“/g;
123+
s/''/”/g;
124+
s/`/‘/g;
125+
s/'/’/g;
122126
}
123127
$bdebug = 0;
124128
foreach (@ARGV) {

0 commit comments

Comments
 (0)