Skip to content

Commit 2313589

Browse files
committed
This program is a filter but it, as it is the default, changes also the way some characters are represented e.g. when having a German o with umlaut this is encoded (Latin1) as octal ' 303' '266' ., and the filter changes this into &#x76, the filter should leave it as is and give it to doxygen that can decide by means of the INPUT_ENCODING how to handle the character.
1 parent b470a10 commit 2313589

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/Doxygen/Filter/Perl/POD.pm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,12 @@ sub view_seq_code
123123
return "\n\@code\n$text\n\@endcode\n";
124124
}
125125

126+
sub encode {
127+
my($self,$text) = @_;
128+
return $text;
129+
}
130+
131+
126132

127133

128134

0 commit comments

Comments
 (0)