Image-JpegTran-AutoRotate
view release on metacpan or search on metacpan
inc/Pod/Markdown.pm view on Meta::CPAN
252627282930313233343536373839404142434445our
%URL_PREFIXES
= (
);
$URL_PREFIXES
{perldoc} =
$URL_PREFIXES
{metacpan};
#{
our
$HAS_HTML_ENTITIES
;
# Stolen from Pod::Simple::XHTML 3.28. {{{
BEGIN {
$HAS_HTML_ENTITIES
=
eval
"require HTML::Entities; 1"
;
}
my
%entities
= (
q{>}
=>
'gt'
,
q{<}
=>
'lt'
,
q{'}
=> '
#39',
q{"}
=>
'quot'
,
inc/Pod/Markdown.pm view on Meta::CPAN
10821083108410851086108710881089109010911092109310941095109610971098109911001101
$section
=~ s/^-+//;
$section
=
lc
$section
;
#$section =~ s/^[^a-z]+//;
$section
||=
'section'
;
return
$section
;
}
{
# From Pod::Simple::XHTML 3.28.
# The strings gets passed through encode_entities() before idify().
# If we don't do it here the substitutions below won't operate consistently.
sub
format_fragment_pod_simple_xhtml {
my
(
$self
,
$t
) =
@_
;
# encode_entities {
# We need to use the defaults in case html_encode_chars has been customized
# (since the purpose is to match what external sources are doing).
( run in 0.825 second using v1.01-cache-2.11-cpan-95122f20152 )