We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9499c8 + e10afcd commit ed5ca07Copy full SHA for ed5ca07
lib/Doxygen/Filter/Perl.pm
@@ -381,6 +381,8 @@ sub PrintAll
381
my $logger = $self->GetLogger($self);
382
$logger->debug("### Entering PrintAll ###");
383
384
+ binmode STDOUT, ":utf8";
385
+
386
$self->_PrintFilenameBlock();
387
$self->_PrintIncludesBlock();
388
lib/Doxygen/Filter/Perl/POD.pm
@@ -137,6 +137,12 @@ sub view_seq_code
137
return "<code>$text</code>";
138
}
139
140
+sub encode {
141
+ my($self,$text) = @_;
142
+ return $text;
143
+}
144
145
146
147
sub view_verbatim {
148
my ($self, $text) = @_;
0 commit comments