Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2319 from hankache/master
Add Pod::Defn & Pod::FormattingCode
  • Loading branch information
hankache committed Sep 20, 2018
2 parents 9a84275 + f917ffe commit 3ee141e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/Type/Pod/Block.pod6
Expand Up @@ -25,6 +25,8 @@ Useful subclasses:
tabular data
Pod::Heading =head1 etc. headings
Pod::Item list items
Pod::Defn definition lists
Pod::FormattingCode formatting codes
=end table
Expand Down
19 changes: 19 additions & 0 deletions doc/Type/Pod/Defn.pod6
@@ -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
23 changes: 23 additions & 0 deletions doc/Type/Pod/FormattingCode.pod6
@@ -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

0 comments on commit 3ee141e

Please sign in to comment.