Skip to content

Commit

Permalink
Item14237: Switched off automatic linking on module names in favor of…
Browse files Browse the repository at this point in the history
… PERLDOC macro
  • Loading branch information
vrurg committed Oct 3, 2017
1 parent 1b288a1 commit 40ca80f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions core/lib/Foswiki/IncludeHandlers/doc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,11 @@ sub INCLUDE {
DOC_SECTION:
while ( _nextLexeme($ctxDoc) ) {
my $dType = $ctxDoc->{type};
$pod .= _modLink( $app, $ctxDoc->{lexemes}{skipped} // '' )
unless $suppressedMethodLevel;

#$pod .= _modLink( $app, $ctxDoc->{lexemes}{skipped} // '' )
# unless $suppressedMethodLevel;
$pod .= $ctxDoc->{lexemes}{skipped};

if ( $dType eq '_Section' ) {
my ( $secPrefix, $secLine, $secDef ) =
@{ $ctxDoc->{lexemes} }{qw(secPrefix secLine secDef)};
Expand Down

0 comments on commit 40ca80f

Please sign in to comment.