summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
8479293)
ikiwiki.info does not support ``` as a fence for code blocks, only ~~~,
and it only works at the beginning of a new paragraph.
date="2015-02-25T05:43:26Z"
content="""
I fixed it by adding
date="2015-02-25T05:43:26Z"
content="""
I fixed it by adding
sub decode($$;$) {
my ( $name, $octets, $check ) = @_;
return undef unless defined $octets;
return $octets if Encode::is_utf8($octets); # add this check
$octets .= '';
sub decode($$;$) {
my ( $name, $octets, $check ) = @_;
return undef unless defined $octets;
return $octets if Encode::is_utf8($octets); # add this check
$octets .= '';