fix the stopwords

This commit is contained in:
Graham Ollis
2013-08-08 16:50:43 -04:00
parent 19876306b6
commit a7a268267c
2 changed files with 13 additions and 11 deletions

View File

@@ -8,14 +8,6 @@ Mojolicious::Plugin::TtRenderer - Template Renderer Plugin for Mojolicious
version 1.49
=encoding utf-8
=begin stopwords
Bjørn
Szász
Árpád
=head1 SYNOPSIS
L<Mojolicious::Lite>:
@@ -25,6 +17,7 @@ L<Mojolicious::Lite>:
L<Mojolicious>
$self->plugin('tt_renderer');
=head1 DESCRIPTION
This plugin is a simple Template Toolkit renderer for L<Mojolicious>.
@@ -32,6 +25,12 @@ Its defaults are usually reasonable, although for finer grain detail in
configuration you may want to use
L<Mojolicious::Plugin::TtRenderer::Engine> directly.
=encoding utf-8
=for stopwords Bjørn
Szász
Árpád
=head1 OPTIONS
These are the options that can be passed in as arguments to this plugin.
@@ -71,6 +70,7 @@ Here is the same example using the full L<Mojolicious> app form:
}
These options will be used if you do not override them:
=over 4
=item INCLUDE_PATH
@@ -114,6 +114,7 @@ is equivalent to
except in the first example relative paths are relative to the L<Mojolicious>
app's home directory (C<$app-E<gt>home>).
=head1 STASH
=head2 h
@@ -121,11 +122,13 @@ app's home directory (C<$app-E<gt>home>).
Helpers are available via the C<h> entry in the stash.
<a href="[% h.url_for('index') %]">go back to index</a>
=head2 c
The current controller instance can be accessed as C<c>.
I see you are requesting a document from [% c.req.headers.host %].
=head1 EXAMPLES
L<Mojolicious::Lite> example:
@@ -190,6 +193,7 @@ L<Mojolicious> example:
These are also included with the C<Mojolicious::Plugin::TtRenderer>
distribution, including the support files required for the full
L<Mojolicious> app example.
=head1 SEE ALSO
L<Mojolicious::Plugin::TtRenderer::Engine>,
@@ -197,8 +201,6 @@ L<Mojolicious>,
L<Mojolicious::Guides>,
L<http://mojolicious.org>.
=end stopwords
=head1 AUTHOR
original author: Ask Bjørn Hansen

View File

@@ -35,7 +35,7 @@ Bjørn
Szász
Árpád
=cut
=end stopwords
=head1 SYNOPSIS