Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Call SUBTITLEs what they are
  • Loading branch information
Mouq committed Jul 8, 2014
1 parent 3c80575 commit 240dbdd
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion html/css/style.css
Expand Up @@ -21,7 +21,7 @@ body {
margin-top: 0;
text-align: center;
}
.desc {
.subtitle {
text-align: center;
font-style: italic;
}
Expand Down
4 changes: 2 additions & 2 deletions htmlify.p6
Expand Up @@ -170,10 +170,10 @@ multi process-pod-source(:$what where "language", :$dr, :$pod, :$podname, :$pod-
} else {
note "$podname does not have an =TITLE";
}
if $pod.content[1] ~~ {$_ ~~ Pod::Block::Named and .name eq "DESCRIPTION"} {
if $pod.content[1] ~~ {$_ ~~ Pod::Block::Named and .name eq "SUBTITLE"} {
$summary = $pod.content[1].content[0].content[0];
} else {
note "$podname does not have an =DESCRIPTION";
note "$podname does not have an =SUBTITLE";
}
my $origin = $dr.add-new(
:kind<language>,
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/Sets_Bags_and_Mixes.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Sets, Bags, and Mixes
=DESCRIPTION Unique collections and weighted lists in Perl 6
=SUBTITLE Unique collections and weighted lists in Perl 6
Often, one wants to work with lists of values that are unique. While
calling L<C<.uniq>|uniq> on the list repeatedly is certainly an option,
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/classtut.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Classes and Objects
=DESCRIPTION A tutorial for creating and using classes in Perl 6
=SUBTITLE A tutorial for creating and using classes in Perl 6
=comment More descriptive title?
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/containers.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Containers
=DESCRIPTION A low-level explaination of Perl 6 containers
=SUBTITLE A low-level explaination of Perl 6 containers
This article started as a conversion on IRC explaining the difference between
the C<Array> and the C<List> type in Perl 6. It explains the levels of
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/glossary.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Glossary
=DESCRIPTION Glossary of Perl 6 terminology
=SUBTITLE Glossary of Perl 6 terminology
=head1 Anonymous
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/grammars.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Grammars
=DESCRIPTION Parsing and interpreting text
=SUBTITLE Parsing and interpreting text
Grammars are a powerful tool used to destructure text and often to
return data structures that have been created by interpreting that text.
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/modules.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Modules
=DESCRIPTION How to create and distribute Perl 6 modules
=SUBTITLE How to create and distribute Perl 6 modules
=head1 Creating and Distributing Modules
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/objects.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Object Orientation
=DESCRIPTION Object Orientation in Perl 6
=SUBTITLE Object Orientation in Perl 6
Perl 6 is an object oriented language at its core, even though it
allows you to write programs in other programming styles.
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/operators.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Operators
=DESCRIPTION Common Perl 6 infixes, prefixes, postfixes, and more!
=SUBTITLE Common Perl 6 infixes, prefixes, postfixes, and more!
=head1 Operator Precedence
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/quoting.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Quoting Constructs
=DESCRIPTION Writing strings, word lists, and regexes in Perl 6
=SUBTITLE Writing strings, word lists, and regexes in Perl 6
=head1 The Q Lang
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/regexes.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Regexes
=DESCRIPTION Pattern matching against strings
=SUBTITLE Pattern matching against strings
Regular expressions are a computer science concept where simple patterns
describe the format of text. Pattern matching is the process of applying
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/terms.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Terms
=DESCRIPTION Perl 6 Terms
=SUBTITLE Perl 6 Terms
Most syntactic constructs in Perl 6 can be categorized in I<terms> and
L<operators|/language/operators>.
Expand Down
2 changes: 1 addition & 1 deletion lib/Language/variables.pod
Expand Up @@ -2,7 +2,7 @@
=TITLE Variables
=DESCRIPTION Perl 6 Variables
=SUBTITLE Perl 6 Variables
Variable names start with a special character called a I<sigil>, followed
optionally by a second special character named I<twigil>, and then an
Expand Down

0 comments on commit 240dbdd

Please sign in to comment.