Skip to content

Commit

Permalink
Version to 0.05, documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benkasminbullock committed Feb 5, 2017
1 parent a7e63fe commit a3568ee
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,3 +1,7 @@
0.05 2017-02-05

* Underlying library updated to 5.2.0

0.04 2016-01-09 10:21:28

* Underlying library updated to 5.1.25.
Expand Down
9 changes: 8 additions & 1 deletion examples/tagset-synopsis.pl
Expand Up @@ -2,5 +2,12 @@
use warnings;
use strict;
use HTML::Valid::Tagset ':all';

for my $tag (qw/canvas a li moonshines/) {
if ($isHTML5{$tag}) {
print "<$tag> is ok\n";
}
else {
print "<$tag> is not HTML5\n";
}
}

2 changes: 1 addition & 1 deletion lib/HTML/Valid.pm
Expand Up @@ -9,7 +9,7 @@ use warnings;
use strict;
use Carp;
use JSON::Parse 'json_file_to_perl';
our $VERSION = '0.04';
our $VERSION = '0.05';
require XSLoader;
XSLoader::load ('HTML::Valid', $VERSION);

Expand Down
1 change: 0 additions & 1 deletion lib/HTML/Valid.pod.tmpl
@@ -1,4 +1,3 @@
[% start_year=2012 %]
[% MACRO example(file) BLOCK %]
[%- pl = file _ ".pl" -%]
[%- out = file _ "-out.txt" -%]
Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Valid/Tagset.pod.tmpl
Expand Up @@ -15,7 +15,7 @@ HTML::Valid::Tagset - data tables useful in parsing HTML

=head1 SYNOPSIS

[% example("tagset-example") %]
[% example("tagset-synopsis") %]

[% INCLUDE "version.pod" %]

Expand Down

0 comments on commit a3568ee

Please sign in to comment.