-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...s/lib/FieldType/Converter/_fixtures/html5/input/112-removeCustomTagsWrappingParagraph.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<section | ||
xmlns:image="http://ez.no/namespaces/ezpublish3/image/" | ||
xmlns:xhtml="http://ez.no/namespaces/ezpublish3/xhtml/" | ||
xmlns:custom="http://ez.no/namespaces/ezpublish3/custom/"> | ||
<paragraph>Lorem ipsum.</paragraph> | ||
<paragraph> | ||
<custom name="test1">One</custom> | ||
<custom name="test2" attr="test2a">Two</custom> | ||
<custom name="test3"/> | ||
</paragraph> | ||
<paragraph>Lorem ipsum</paragraph> | ||
</section> |
8 changes: 8 additions & 0 deletions
8
.../lib/FieldType/Converter/_fixtures/html5/output/112-removeCustomTagsWrappingParagraph.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<section xmlns="http://ez.no/namespaces/ezpublish5/xhtml5"> | ||
<p>Lorem ipsum.</p> | ||
<custom name="test1">One</custom> | ||
<custom name="test2" attr="test2a">Two</custom> | ||
<custom name="test3"/> | ||
<p>Lorem ipsum</p> | ||
</section> |