[svn:parrot] r48020 - branches/html_cleanup/lib/Parrot/Docs
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Wed Jul 7 00:47:18 UTC 2010
Author: mikehh
Date: Wed Jul 7 00:47:18 2010
New Revision: 48020
URL: https://trac.parrot.org/parrot/changeset/48020
Log:
remove non-UTF-8 character, trailing spaces
Modified:
branches/html_cleanup/lib/Parrot/Docs/PodToHtml.pm
Modified: branches/html_cleanup/lib/Parrot/Docs/PodToHtml.pm
==============================================================================
--- branches/html_cleanup/lib/Parrot/Docs/PodToHtml.pm Wed Jul 7 00:43:09 2010 (r48019)
+++ branches/html_cleanup/lib/Parrot/Docs/PodToHtml.pm Wed Jul 7 00:47:18 2010 (r48020)
@@ -189,7 +189,7 @@
# We make the code tags in items bold because they are almost
# always part of function and arguments, or constants listings
- #Êand should stand out.
+ # and should stand out.
print { $self->{'output_fh'} } '<b>' if $self->{IN_ITEM_TEXT};
@@ -604,30 +604,30 @@
## my $rel_path = shift;
## my $item = shift;
## my $file = $source->file_with_relative_path($rel_path);
-##
+##
## return unless $file->contains_pod;
-##
+##
## $self->{TARGET} = $target;
-##
+##
## # Use our own method for consistency.
## $self->{'Title'} = $file->title;
-##
+##
## $rel_path = $self->append_html_suffix($rel_path);
-##
+##
## my $docs_file = $target->file_with_relative_path($rel_path);
-##
+##
## $self->{DOCS_FILE} = $docs_file;
-##
+##
## $rel_path = $self->href_path( $docs_file->parent->relative_path( $target->parent_path ) );
-##
+##
## my $name = $target->name;
-##
+##
## # This is a cheat because we know that all top-level sections
## # have their indexes in the root directory - but it works.
-##
+##
## $self->{NAV_BAR} = $item->html_navigation("$rel_path/$name");
## $self->{RESOURCES_URL} = "$rel_path/resources";
-##
+##
## $docs_file->write( $self->html_for_file($file) );
## }
More information about the parrot-commits
mailing list