Skip to content

Commit ad0ac68

Browse files
committed
minor change
1 parent 243af82 commit ad0ac68

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

README.md

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
# Doxygen::Filter::Perl #
22

3-
## Hosted At ##
3+
4+
Doxygen::Filter::Perl is Copyright (C) 2011, Bret Jordan
5+
========================================================
6+
HOSTED AT
47
http://github.com/jordan2175/doxygen-filter-perl
58

6-
## Installation ##
9+
10+
MAJOR FEATURES
11+
The major features of Doxygen::Filter::Perl are as follows:
12+
Support for Doxygen style comments in Perl
13+
Ability to convert POD comments in to Doxygen format
14+
15+
16+
INSTALLATION
717
To install this module type the following:
818
perl Makefile.PL
919
make
@@ -15,14 +25,8 @@
1525
PROJECT_NAME
1626
PROJECT_NUMBER
1727

18-
## Major Features ##
19-
20-
The major features of Doxygen::Filter::Perl are as follows:
21-
- Support for Doxygen style comments in Perl
22-
- Ability to convert POD comments in to Doxygen format
23-
24-
## DEPENDENCIES ##
2528

29+
DEPENDENCIES
2630
This module requires these other modules and libraries:
2731
Pod::POM (0.27) [License = Perl]
2832
Pod::POM::View::HTML (1.06) [License = Perl]
@@ -31,14 +35,17 @@ The major features of Doxygen::Filter::Perl are as follows:
3135
Test::Output (1.01) [License = Perl]
3236
IO::Handle
3337

34-
## Contributing ##
3538

36-
Contributions welcome! Please fork the repository and open a pull request with your changes or send me a diff patch file.
39+
NOTES
40+
41+
42+
LICENCE INFORMATION
43+
See the LICENSE file included with this package for license details.
3744

38-
## License ##
3945

40-
This is free software, licensed under the Apache License, Version 2.0.
46+
AUTHOR
47+
Bret Jordan, jordan at open1x littledot org, jordan2175 at gmail littledot com
4148

42-
## Copyright ##
4349

44-
Copyright 2015 Bret Jordan, All rights reserved.
50+
COPYRIGHT
51+
Copyright (C) 2011 by Bret Jordan all rights reserved

lib/Doxygen/Filter/Perl.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ sub _RemovePerlCommentFlags
984984
{
985985
$logger->debug("Found verbatim command");
986986
# We need to remove the comment marker from the '# @verbaim' line now since it will not be caught later
987-
$line =~ s/^\s*#\s*//;
987+
$line =~ s/^\s*#\s*/ /;
988988
$iInVerbatimBlock = 1;
989989
}
990990
elsif ($line =~ /^\s*#\s*\@endverbatim/)

0 commit comments

Comments
 (0)