[Bps-public-commit] HTML-Quoted branch, master, updated. edec1939d5d91ed48a86793502904f2b1d5b2cb5
Ruslan Zakirov
ruz at bestpractical.com
Sat Feb 27 06:38:37 EST 2010
The branch, master has been updated
via edec1939d5d91ed48a86793502904f2b1d5b2cb5 (commit)
via 1d81eb158737a4b4320c2da542c04c52b298a9d7 (commit)
from 1bb3f300e02a80ad9d230a188758a732d5f3cdf3 (commit)
Summary of changes:
Changes | 4 ++++
MANIFEST | 1 +
META.yml | 2 +-
lib/HTML/Quoted.pm | 5 ++++-
4 files changed, 10 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 1d81eb158737a4b4320c2da542c04c52b298a9d7
Author: Ruslan Zakirov <ruz at bestpractical.com>
Date: Sat Feb 27 14:36:53 2010 +0300
treat P as inline
diff --git a/lib/HTML/Quoted.pm b/lib/HTML/Quoted.pm
index 6b0068d..4d43fb7 100644
--- a/lib/HTML/Quoted.pm
+++ b/lib/HTML/Quoted.pm
@@ -104,11 +104,14 @@ sub combine {
}
}
+# XXX: p is treated as inline tag as it's groupping tag that
+# can not contain blocks inside, use span for groupping
my %INLINE_TAG = map {$_ => 1 } qw(
a br span bdo map img
tt i b big small
em strong dfn code q
samp kbd var cite abbr acronym sub sup
+ p
);
my %ENTITIES = (
commit edec1939d5d91ed48a86793502904f2b1d5b2cb5
Author: Ruslan Zakirov <ruz at bestpractical.com>
Date: Sat Feb 27 14:37:59 2010 +0300
bump version, 0.02
diff --git a/Changes b/Changes
index 7610cd2..a324000 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.02 2010-02-27
+
+ * treat P tag as inline, for now
+
0.01 2010-02-12
* initial release
diff --git a/MANIFEST b/MANIFEST
index 565b92b..59e45d1 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,3 +1,4 @@
+Changes
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
diff --git a/META.yml b/META.yml
index 8e72af5..0786294 100644
--- a/META.yml
+++ b/META.yml
@@ -23,4 +23,4 @@ requires:
perl: 5.8.0
resources:
license: http://dev.perl.org/licenses/
-version: 0.01
+version: 0.02
diff --git a/lib/HTML/Quoted.pm b/lib/HTML/Quoted.pm
index 4d43fb7..e8cd18c 100644
--- a/lib/HTML/Quoted.pm
+++ b/lib/HTML/Quoted.pm
@@ -4,7 +4,7 @@ use warnings;
package HTML::Quoted;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
=head1 NAME
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list