Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add Pod::Defn & Pod::FormattingCode
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| =begin pod | ||
| =TITLE class Pod::Defn | ||
| =SUBTITLE Pod Definition List | ||
| class Pod::Defn is Pod::Block { } | ||
| Class for definition lists in a Pod document. | ||
| =head1 Methods | ||
| =head2 method term | ||
| method term(--> Mu) | ||
| =end pod | ||
|
|
||
| # vim: expandtab shiftwidth=4 ft=perl6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| =begin pod | ||
| =TITLE class Pod::FormattingCode | ||
| =SUBTITLE Pod Formatting Code | ||
| class Pod::FormattingCode is Pod::Block { } | ||
| Class for formatting codes in a Pod document. | ||
| =head1 Methods | ||
| =head2 method type | ||
| method type(--> Mu) | ||
| =head2 method meta | ||
| method meta(--> Positional) | ||
| =end pod | ||
|
|
||
| # vim: expandtab shiftwidth=4 ft=perl6 |