Download daisydiff Free Java Code

Description

An open source Java library to compare HTML files (forked from http://daisydiff.googlecode.com/).

Source Files

The download file daisydiff-master.zip has the following entries.


.gitignore//from w  ww. j  a  va 2 s  .c om
LICENSE.txt
NOTICE.txt
README.txt
css/diff.css
images/diff-first.gif
images/diff-last.gif
images/diff-next.gif
images/diff-previous.gif
images/diffconflict.gif
images/diffmin.gif
images/diffplus.gif
images/diffunderline.gif
js/diff.js
js/dojo/dojo.js
js/dojo/src/event.js
js/dojo/src/event/__package__.js
js/dojo/src/event/browser.js
js/dojo/src/event/common.js
js/dojo/src/event/topic.js
js/dojo/src/experimental.js
js/dojo/src/html.js
js/dojo/src/html/__package__.js
js/dojo/src/html/color.js
js/dojo/src/html/common.js
js/dojo/src/html/display.js
js/dojo/src/html/layout.js
js/dojo/src/html/metrics.js
js/dojo/src/html/selection.js
js/dojo/src/html/shadow.js
js/dojo/src/html/style.js
js/dojo/src/html/util.js
js/dojo/src/lang.js
js/dojo/src/lang/__package__.js
js/dojo/src/lang/array.js
js/dojo/src/lang/assert.js
js/dojo/src/lang/common.js
js/dojo/src/lang/declare.js
js/dojo/src/lang/extras.js
js/dojo/src/lang/func.js
js/dojo/src/lang/repr.js
js/dojo/src/lang/timing/Streamer.js
js/dojo/src/lang/timing/Timer.js
js/dojo/src/lang/timing/__package__.js
js/dojo/src/lang/type.js
js/tooltip/tip_balloon.js
js/tooltip/tip_balloon/b.gif
js/tooltip/tip_balloon/background.gif
js/tooltip/tip_balloon/l.gif
js/tooltip/tip_balloon/lb.gif
js/tooltip/tip_balloon/lt.gif
js/tooltip/tip_balloon/r.gif
js/tooltip/tip_balloon/rb.gif
js/tooltip/tip_balloon/rt.gif
js/tooltip/tip_balloon/stemb.gif
js/tooltip/tip_balloon/stemt.gif
js/tooltip/tip_balloon/t.gif
js/tooltip/wz_tooltip.js
pom.xml
src/main/java/org/eclipse/compare/internal/CompareMessages.java
src/main/java/org/eclipse/compare/internal/LCS.java
src/main/java/org/eclipse/compare/internal/LCSSettings.java
src/main/java/org/eclipse/compare/rangedifferencer/DifferencesIterator.java
src/main/java/org/eclipse/compare/rangedifferencer/IRangeComparator.java
src/main/java/org/eclipse/compare/rangedifferencer/OldDifferencer.java
src/main/java/org/eclipse/compare/rangedifferencer/RangeComparatorLCS.java
src/main/java/org/eclipse/compare/rangedifferencer/RangeDifference.java
src/main/java/org/eclipse/compare/rangedifferencer/RangeDifferencer.java
src/main/java/org/outerj/daisy/diff/DaisyDiff.java
src/main/java/org/outerj/daisy/diff/HtmlCleaner.java
src/main/java/org/outerj/daisy/diff/Main.java
src/main/java/org/outerj/daisy/diff/XslFilter.java
src/main/java/org/outerj/daisy/diff/helper/MergeCharacterEventsHandler.java
src/main/java/org/outerj/daisy/diff/helper/NekoHtmlParser.java
src/main/java/org/outerj/daisy/diff/helper/SaxBuffer.java
src/main/java/org/outerj/daisy/diff/html/HTMLDiffer.java
src/main/java/org/outerj/daisy/diff/html/HtmlSaxDiffOutput.java
src/main/java/org/outerj/daisy/diff/html/TextNodeComparator.java
src/main/java/org/outerj/daisy/diff/html/ancestor/AncestorComparator.java
src/main/java/org/outerj/daisy/diff/html/ancestor/AncestorComparatorResult.java
src/main/java/org/outerj/daisy/diff/html/ancestor/ChangeText.java
src/main/java/org/outerj/daisy/diff/html/ancestor/ChangeTextGenerator.java
src/main/java/org/outerj/daisy/diff/html/ancestor/TagChangeSematic.java
src/main/java/org/outerj/daisy/diff/html/ancestor/TextOnlyComparator.java
src/main/java/org/outerj/daisy/diff/html/ancestor/tagtostring/AnchorToString.java
src/main/java/org/outerj/daisy/diff/html/ancestor/tagtostring/NoContentTagToString.java
src/main/java/org/outerj/daisy/diff/html/ancestor/tagtostring/TagToString.java
src/main/java/org/outerj/daisy/diff/html/ancestor/tagtostring/TagToStringFactory.java
src/main/java/org/outerj/daisy/diff/html/dom/BodyNode.java
src/main/java/org/outerj/daisy/diff/html/dom/DomTree.java
src/main/java/org/outerj/daisy/diff/html/dom/DomTreeBuilder.java
src/main/java/org/outerj/daisy/diff/html/dom/ImageNode.java
src/main/java/org/outerj/daisy/diff/html/dom/Node.java
src/main/java/org/outerj/daisy/diff/html/dom/SeparatingNode.java
src/main/java/org/outerj/daisy/diff/html/dom/TagNode.java
src/main/java/org/outerj/daisy/diff/html/dom/TextNode.java
src/main/java/org/outerj/daisy/diff/html/dom/WhiteSpaceNode.java
src/main/java/org/outerj/daisy/diff/html/dom/helper/AttributesMap.java
src/main/java/org/outerj/daisy/diff/html/dom/helper/LastCommonParentResult.java
src/main/java/org/outerj/daisy/diff/html/modification/HtmlLayoutChange.java
src/main/java/org/outerj/daisy/diff/html/modification/Modification.java
src/main/java/org/outerj/daisy/diff/html/modification/ModificationType.java
src/main/java/org/outerj/daisy/diff/output/DiffOutput.java
src/main/java/org/outerj/daisy/diff/output/Differ.java
src/main/java/org/outerj/daisy/diff/output/TextDiffOutput.java
src/main/java/org/outerj/daisy/diff/output/TextDiffer.java
src/main/java/org/outerj/daisy/diff/tag/ArgumentComparator.java
src/main/java/org/outerj/daisy/diff/tag/Atom.java
src/main/java/org/outerj/daisy/diff/tag/DelimiterAtom.java
src/main/java/org/outerj/daisy/diff/tag/IAtomSplitter.java
src/main/java/org/outerj/daisy/diff/tag/TagAtom.java
src/main/java/org/outerj/daisy/diff/tag/TagComparator.java
src/main/java/org/outerj/daisy/diff/tag/TagDiffer.java
src/main/java/org/outerj/daisy/diff/tag/TagSaxDiffOutput.java
src/main/java/org/outerj/daisy/diff/tag/TextAtom.java
src/main/resources/l10n/messages.properties
src/main/resources/l10n/messages_en.properties
src/main/resources/l10n/messages_fr.properties
src/main/resources/xslfilter/cleanup.xsl
src/main/resources/xslfilter/htmlheader.xsl
src/main/resources/xslfilter/tagheader.xsl
src/test/java/org/outerj/daisy/diff/BetterParameterized.java
src/test/java/org/outerj/daisy/diff/OutOfBoundsTest.java
src/test/java/org/outerj/daisy/diff/html/FileBasedTest.java
src/test/java/org/outerj/daisy/diff/html/HTMLDifferTest.java
src/test/java/org/outerj/daisy/diff/html/HtmlTestFixture.java
src/test/java/org/outerj/daisy/diff/html/LongHtmlTest.java
src/test/java/org/outerj/daisy/diff/html/TestHelper.java
src/test/java/org/outerj/daisy/diff/html/dom/NodeTest.java
src/test/java/org/outerj/daisy/diff/tag/TagDifferTest.java
src/test/java/org/outerj/daisy/diff/tag/TagTestFixture.java
src/test/resources/testdata/General/Minimal/01 add last Word/a.html
src/test/resources/testdata/General/Minimal/01 add last Word/a.xml
src/test/resources/testdata/General/Minimal/01 add last Word/b.html
src/test/resources/testdata/General/Minimal/01 add last Word/b.xml
src/test/resources/testdata/General/Minimal/01 add last Word/expected.html
src/test/resources/testdata/General/Minimal/02 remove last Word/a.html
src/test/resources/testdata/General/Minimal/02 remove last Word/a.xml
src/test/resources/testdata/General/Minimal/02 remove last Word/b.html
src/test/resources/testdata/General/Minimal/02 remove last Word/b.xml
src/test/resources/testdata/General/Minimal/02 remove last Word/expected.html
src/test/resources/testdata/General/Minimal/03 dot/a.html
src/test/resources/testdata/General/Minimal/03 dot/a.xml
src/test/resources/testdata/General/Minimal/03 dot/b.html
src/test/resources/testdata/General/Minimal/03 dot/b.xml
src/test/resources/testdata/General/Minimal/03 dot/expected.html
src/test/resources/testdata/General/Minimal/04 table border/a.html
src/test/resources/testdata/General/Minimal/04 table border/a.xml
src/test/resources/testdata/General/Minimal/04 table border/b.html
src/test/resources/testdata/General/Minimal/04 table border/b.xml
src/test/resources/testdata/General/Minimal/04 table border/expected.html
src/test/resources/testdata/General/Minimal/05 table row re-order/a.html
src/test/resources/testdata/General/Minimal/05 table row re-order/a.xml
src/test/resources/testdata/General/Minimal/05 table row re-order/b.html
src/test/resources/testdata/General/Minimal/05 table row re-order/b.xml
src/test/resources/testdata/General/Minimal/05 table row re-order/expected.html
src/test/resources/testdata/General/Minimal/06 Lists ins del items/a.html
src/test/resources/testdata/General/Minimal/06 Lists ins del items/a.xml
src/test/resources/testdata/General/Minimal/06 Lists ins del items/b.html
src/test/resources/testdata/General/Minimal/06 Lists ins del items/b.xml
src/test/resources/testdata/General/Minimal/06 Lists ins del items/expected.html
src/test/resources/testdata/General/Minimal/07 Table reverse attributes/a.html
src/test/resources/testdata/General/Minimal/07 Table reverse attributes/a.xml
src/test/resources/testdata/General/Minimal/07 Table reverse attributes/b.html
src/test/resources/testdata/General/Minimal/07 Table reverse attributes/b.xml
src/test/resources/testdata/General/Minimal/07 Table reverse attributes/expected.html
src/test/resources/testdata/General/Minimal/09 Multiple text changes/a.html
src/test/resources/testdata/General/Minimal/09 Multiple text changes/a.xml
src/test/resources/testdata/General/Minimal/09 Multiple text changes/b.html
src/test/resources/testdata/General/Minimal/09 Multiple text changes/b.xml
src/test/resources/testdata/General/Minimal/09 Multiple text changes/expected.html
src/test/resources/testdata/General/Minimal/10 Attributes remove text/a.html
src/test/resources/testdata/General/Minimal/10 Attributes remove text/a.xml
src/test/resources/testdata/General/Minimal/10 Attributes remove text/b.html
src/test/resources/testdata/General/Minimal/10 Attributes remove text/b.xml
src/test/resources/testdata/General/Minimal/10 Attributes remove text/expected.html
src/test/resources/testdata/General/Minimal/11 Attribute width/a.html
src/test/resources/testdata/General/Minimal/11 Attribute width/a.xml
src/test/resources/testdata/General/Minimal/11 Attribute width/b.html
src/test/resources/testdata/General/Minimal/11 Attribute width/b.xml
src/test/resources/testdata/General/Minimal/11 Attribute width/expected.html
src/test/resources/testdata/General/Minimal/12 Remove br/a.html
src/test/resources/testdata/General/Minimal/12 Remove br/a.xml
src/test/resources/testdata/General/Minimal/12 Remove br/b.html
src/test/resources/testdata/General/Minimal/12 Remove br/b.xml
src/test/resources/testdata/General/Minimal/12 Remove br/expected.html
src/test/resources/testdata/General/Minimal/13 HTML entities/a.html
src/test/resources/testdata/General/Minimal/13 HTML entities/a.xml
src/test/resources/testdata/General/Minimal/13 HTML entities/b.html
src/test/resources/testdata/General/Minimal/13 HTML entities/b.xml
src/test/resources/testdata/General/Minimal/13 HTML entities/expected.html
src/test/resources/testdata/General/Minimal/14 greek entities/a.html
src/test/resources/testdata/General/Minimal/14 greek entities/a.xml
src/test/resources/testdata/General/Minimal/14 greek entities/b.html
src/test/resources/testdata/General/Minimal/14 greek entities/b.xml
src/test/resources/testdata/General/Minimal/14 greek entities/expected.html
src/test/resources/testdata/General/Minimal/15 greek chars/a.html
src/test/resources/testdata/General/Minimal/15 greek chars/a.xml
src/test/resources/testdata/General/Minimal/15 greek chars/b.html
src/test/resources/testdata/General/Minimal/15 greek chars/b.xml
src/test/resources/testdata/General/Minimal/15 greek chars/expected.html
src/test/resources/testdata/General/Minimal/16 List add item/a.html
src/test/resources/testdata/General/Minimal/16 List add item/a.xml
src/test/resources/testdata/General/Minimal/16 List add item/b.html
src/test/resources/testdata/General/Minimal/16 List add item/b.xml
src/test/resources/testdata/General/Minimal/16 List add item/expected.html
src/test/resources/testdata/General/Minimal/17 Table cell scope/a.html
src/test/resources/testdata/General/Minimal/17 Table cell scope/a.xml
src/test/resources/testdata/General/Minimal/17 Table cell scope/b.html
src/test/resources/testdata/General/Minimal/17 Table cell scope/b.xml
src/test/resources/testdata/General/Minimal/17 Table cell scope/expected.html
src/test/resources/testdata/General/Minimal/18 simple tags/a.html
src/test/resources/testdata/General/Minimal/18 simple tags/a.xml
src/test/resources/testdata/General/Minimal/18 simple tags/b.html
src/test/resources/testdata/General/Minimal/18 simple tags/b.xml
src/test/resources/testdata/General/Minimal/18 simple tags/expected.html
src/test/resources/testdata/General/Minimal/19 sup no space/a.html
src/test/resources/testdata/General/Minimal/19 sup no space/a.xml
src/test/resources/testdata/General/Minimal/19 sup no space/b.html
src/test/resources/testdata/General/Minimal/19 sup no space/b.xml
src/test/resources/testdata/General/Minimal/19 sup no space/expected.html
src/test/resources/testdata/General/Minimal/20 sup space/a.html
src/test/resources/testdata/General/Minimal/20 sup space/a.xml
src/test/resources/testdata/General/Minimal/20 sup space/b.html
src/test/resources/testdata/General/Minimal/20 sup space/b.xml
src/test/resources/testdata/General/Minimal/20 sup space/expected.html
src/test/resources/testdata/General/Minimal/21 Italics remove/a.html
src/test/resources/testdata/General/Minimal/21 Italics remove/a.xml
src/test/resources/testdata/General/Minimal/21 Italics remove/b.html
src/test/resources/testdata/General/Minimal/21 Italics remove/b.xml
src/test/resources/testdata/General/Minimal/21 Italics remove/expected.html
src/test/resources/testdata/General/Minimal/22 Text in tag/a.html
src/test/resources/testdata/General/Minimal/22 Text in tag/a.xml
src/test/resources/testdata/General/Minimal/22 Text in tag/b.html
src/test/resources/testdata/General/Minimal/22 Text in tag/b.xml
src/test/resources/testdata/General/Minimal/22 Text in tag/expected.html
src/test/resources/testdata/General/Minimal/23 Remove Strong/a.html
src/test/resources/testdata/General/Minimal/23 Remove Strong/a.xml
src/test/resources/testdata/General/Minimal/23 Remove Strong/b.html
src/test/resources/testdata/General/Minimal/23 Remove Strong/b.xml
src/test/resources/testdata/General/Minimal/23 Remove Strong/expected.html
src/test/resources/testdata/General/Minimal/24 Tag nesting/a.html
src/test/resources/testdata/General/Minimal/24 Tag nesting/a.xml
src/test/resources/testdata/General/Minimal/24 Tag nesting/b.html
src/test/resources/testdata/General/Minimal/24 Tag nesting/b.xml
src/test/resources/testdata/General/Minimal/24 Tag nesting/expected.html
src/test/resources/testdata/General/Minimal/25 Tag overlap/a.html
src/test/resources/testdata/General/Minimal/25 Tag overlap/a.xml
src/test/resources/testdata/General/Minimal/25 Tag overlap/b.html
src/test/resources/testdata/General/Minimal/25 Tag overlap/b.xml
src/test/resources/testdata/General/Minimal/25 Tag overlap/expected.html
src/test/resources/testdata/General/Minimal/26 Attribute change/a.html
src/test/resources/testdata/General/Minimal/26 Attribute change/a.xml
src/test/resources/testdata/General/Minimal/26 Attribute change/b.html
src/test/resources/testdata/General/Minimal/26 Attribute change/b.xml
src/test/resources/testdata/General/Minimal/26 Attribute change/expected.html
src/test/resources/testdata/General/Minimal/27 Tag scope/a.html
src/test/resources/testdata/General/Minimal/27 Tag scope/a.xml
src/test/resources/testdata/General/Minimal/27 Tag scope/b.html
src/test/resources/testdata/General/Minimal/27 Tag scope/b.xml
src/test/resources/testdata/General/Minimal/27 Tag scope/expected.html
src/test/resources/testdata/General/Minimal/28 Attribute scope/a.html
src/test/resources/testdata/General/Minimal/28 Attribute scope/a.xml
src/test/resources/testdata/General/Minimal/28 Attribute scope/b.html
src/test/resources/testdata/General/Minimal/28 Attribute scope/b.xml
src/test/resources/testdata/General/Minimal/28 Attribute scope/expected.html
src/test/resources/testdata/General/Minimal/29 Table attribute add/a.html
src/test/resources/testdata/General/Minimal/29 Table attribute add/a.xml
src/test/resources/testdata/General/Minimal/29 Table attribute add/b.html
src/test/resources/testdata/General/Minimal/29 Table attribute add/b.xml
src/test/resources/testdata/General/Minimal/29 Table attribute add/expected.html
src/test/resources/testdata/General/Minimal/30 Closing br/a.html
src/test/resources/testdata/General/Minimal/30 Closing br/a.xml
src/test/resources/testdata/General/Minimal/30 Closing br/b.html
src/test/resources/testdata/General/Minimal/30 Closing br/b.xml
src/test/resources/testdata/General/Minimal/30 Closing br/expected.html
src/test/resources/testdata/General/Minimal/32 Empty tag/a.html
src/test/resources/testdata/General/Minimal/32 Empty tag/a.xml
src/test/resources/testdata/General/Minimal/32 Empty tag/b.html
src/test/resources/testdata/General/Minimal/32 Empty tag/b.xml
src/test/resources/testdata/General/Minimal/32 Empty tag/expected.html
src/test/resources/testdata/General/Minimal/33 Tag Change/a.html
src/test/resources/testdata/General/Minimal/33 Tag Change/a.xml
src/test/resources/testdata/General/Minimal/33 Tag Change/b.html
src/test/resources/testdata/General/Minimal/33 Tag Change/b.xml
src/test/resources/testdata/General/Minimal/33 Tag Change/expected.html
src/test/resources/testdata/General/Minimal/34 Tag Change Extend/a.html
src/test/resources/testdata/General/Minimal/34 Tag Change Extend/a.xml
src/test/resources/testdata/General/Minimal/34 Tag Change Extend/b.html
src/test/resources/testdata/General/Minimal/34 Tag Change Extend/b.xml
src/test/resources/testdata/General/Minimal/34 Tag Change Extend/expected.html
src/test/resources/testdata/General/Minimal/35 Table cell extend/a.html
src/test/resources/testdata/General/Minimal/35 Table cell extend/a.xml
src/test/resources/testdata/General/Minimal/35 Table cell extend/b.html
src/test/resources/testdata/General/Minimal/35 Table cell extend/b.xml
src/test/resources/testdata/General/Minimal/35 Table cell extend/expected.html
src/test/resources/testdata/General/Minimal/36 Convert table/a.html
src/test/resources/testdata/General/Minimal/36 Convert table/a.xml
src/test/resources/testdata/General/Minimal/36 Convert table/b.html
src/test/resources/testdata/General/Minimal/36 Convert table/b.xml
src/test/resources/testdata/General/Minimal/36 Convert table/expected.html
src/test/resources/testdata/General/Minimal/37 Convert list/a.html
src/test/resources/testdata/General/Minimal/37 Convert list/a.xml
src/test/resources/testdata/General/Minimal/37 Convert list/b.html
src/test/resources/testdata/General/Minimal/37 Convert list/b.xml
src/test/resources/testdata/General/Minimal/37 Convert list/expected.html
src/test/resources/testdata/General/Minimal/38 Change rows/a.html
src/test/resources/testdata/General/Minimal/38 Change rows/a.xml
src/test/resources/testdata/General/Minimal/38 Change rows/b.html
src/test/resources/testdata/General/Minimal/38 Change rows/b.xml
src/test/resources/testdata/General/Minimal/38 Change rows/expected.html
src/test/resources/testdata/General/Minimal/39 Change columns/a.html
src/test/resources/testdata/General/Minimal/39 Change columns/a.xml
src/test/resources/testdata/General/Minimal/39 Change columns/b.html
src/test/resources/testdata/General/Minimal/39 Change columns/b.xml
src/test/resources/testdata/General/Minimal/39 Change columns/expected.html
src/test/resources/testdata/General/Minimal/40 Table attributes/a.html
src/test/resources/testdata/General/Minimal/40 Table attributes/a.xml
src/test/resources/testdata/General/Minimal/40 Table attributes/b.html
src/test/resources/testdata/General/Minimal/40 Table attributes/b.xml
src/test/resources/testdata/General/Minimal/40 Table attributes/expected.html
src/test/resources/testdata/General/Minimal/41 col width/Thumbs.db
src/test/resources/testdata/General/Minimal/41 col width/a.html
src/test/resources/testdata/General/Minimal/41 col width/a.xml
src/test/resources/testdata/General/Minimal/41 col width/b.html
src/test/resources/testdata/General/Minimal/41 col width/b.xml
src/test/resources/testdata/General/Minimal/41 col width/expected.html
src/test/resources/testdata/General/Minimal/41 col width/result.png
src/test/resources/testdata/General/Minimal/42 Multiple table changes/Thumbs.db
src/test/resources/testdata/General/Minimal/42 Multiple table changes/a.html
src/test/resources/testdata/General/Minimal/42 Multiple table changes/a.xml
src/test/resources/testdata/General/Minimal/42 Multiple table changes/b.html
src/test/resources/testdata/General/Minimal/42 Multiple table changes/b.xml
src/test/resources/testdata/General/Minimal/42 Multiple table changes/expected.html
src/test/resources/testdata/General/Minimal/42 Multiple table changes/modified.png
src/test/resources/testdata/General/Minimal/42 Multiple table changes/orig.png
src/test/resources/testdata/General/Minimal/42 Multiple table changes/result.png
src/test/resources/testdata/General/Minimal/43 Punctuation/a.html
src/test/resources/testdata/General/Minimal/43 Punctuation/b.html
src/test/resources/testdata/General/Minimal/43 Punctuation/expected.html
src/test/resources/testdata/General/Minimal/51 Sub and Sup/a.html
src/test/resources/testdata/General/Minimal/51 Sub and Sup/b.html
src/test/resources/testdata/General/Minimal/51 Sub and Sup/expected.html
src/test/resources/testdata/General/Minimal/52 Change font size/a.html
src/test/resources/testdata/General/Minimal/52 Change font size/b.html
src/test/resources/testdata/General/Minimal/52 Change font size/expected.html
src/test/resources/testdata/General/Minimal/55 Complex Format Changes/a.html
src/test/resources/testdata/General/Minimal/55 Complex Format Changes/b.html
src/test/resources/testdata/General/Minimal/55 Complex Format Changes/expected.html
src/test/resources/testdata/General/Minimal/63 Tables_opening-closing td simple example/a.html
src/test/resources/testdata/General/Minimal/63 Tables_opening-closing td simple example/b.html
src/test/resources/testdata/General/Minimal/63 Tables_opening-closing td simple example/expected.html
src/test/resources/testdata/General/Minimal/64 Tables_opening-closing td simple example 2/a.html
src/test/resources/testdata/General/Minimal/64 Tables_opening-closing td simple example 2/b.html
src/test/resources/testdata/General/Minimal/64 Tables_opening-closing td simple example 2/expected.html
src/test/resources/testdata/General/Minimal/65 List_opening-closing/a.html
src/test/resources/testdata/General/Minimal/65 List_opening-closing/b.html
src/test/resources/testdata/General/Minimal/65 List_opening-closing/expected.html
src/test/resources/testdata/General/Minimal/66 List_opening-closing li/a.html
src/test/resources/testdata/General/Minimal/66 List_opening-closing li/b.html
src/test/resources/testdata/General/Minimal/66 List_opening-closing li/expected.html
src/test/resources/testdata/General/Minimal/72 Table with List/a.html
src/test/resources/testdata/General/Minimal/72 Table with List/b.html
src/test/resources/testdata/General/Minimal/72 Table with List/expected.html
src/test/resources/testdata/Paragraphs/001 Add text start/a.html
src/test/resources/testdata/Paragraphs/001 Add text start/b.html
src/test/resources/testdata/Paragraphs/001 Add text start/expected.html
src/test/resources/testdata/Paragraphs/001 Add text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/001 Add text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/001 Add text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/002 Add Text middle/a.html
src/test/resources/testdata/Paragraphs/002 Add Text middle/b.html
src/test/resources/testdata/Paragraphs/002 Add Text middle/expected.html
src/test/resources/testdata/Paragraphs/002 Add Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/002 Add Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/002 Add Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/003 Add Text end/a.html
src/test/resources/testdata/Paragraphs/003 Add Text end/b.html
src/test/resources/testdata/Paragraphs/003 Add Text end/expected.html
src/test/resources/testdata/Paragraphs/003 Add Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/003 Add Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/003 Add Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/004 remove text start/a.html
src/test/resources/testdata/Paragraphs/004 remove text start/b.html
src/test/resources/testdata/Paragraphs/004 remove text start/expected.html
src/test/resources/testdata/Paragraphs/004 remove text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/004 remove text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/004 remove text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/005 remove Text middle/a.html
src/test/resources/testdata/Paragraphs/005 remove Text middle/b.html
src/test/resources/testdata/Paragraphs/005 remove Text middle/expected.html
src/test/resources/testdata/Paragraphs/005 remove Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/005 remove Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/005 remove Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/006 remove Text end/a.html
src/test/resources/testdata/Paragraphs/006 remove Text end/b.html
src/test/resources/testdata/Paragraphs/006 remove Text end/expected.html
src/test/resources/testdata/Paragraphs/006 remove Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/006 remove Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/006 remove Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start/a.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start/b.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start/expected.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/007 remove-add Text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle/a.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle/b.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle/expected.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/008 remove-add Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end/a.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end/b.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end/expected.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/009 remove-add Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/010 Add formatting start/a.html
src/test/resources/testdata/Paragraphs/010 Add formatting start/b.html
src/test/resources/testdata/Paragraphs/010 Add formatting start/expected.html
src/test/resources/testdata/Paragraphs/010 Add formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/010 Add formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/010 Add formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle/a.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle/b.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle/expected.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/011 Add formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/012 Add formatting end/a.html
src/test/resources/testdata/Paragraphs/012 Add formatting end/b.html
src/test/resources/testdata/Paragraphs/012 Add formatting end/expected.html
src/test/resources/testdata/Paragraphs/012 Add formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/012 Add formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/012 Add formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start/a.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start/b.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start/expected.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/013 Remove formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle/a.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle/b.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle/expected.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/014 Remove formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end/a.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end/b.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end/expected.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/015 Remove formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/016 Change formatting start/a.html
src/test/resources/testdata/Paragraphs/016 Change formatting start/b.html
src/test/resources/testdata/Paragraphs/016 Change formatting start/expected.html
src/test/resources/testdata/Paragraphs/016 Change formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/016 Change formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/016 Change formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle/a.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle/b.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle/expected.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/017 Change formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/018 Change formatting end/a.html
src/test/resources/testdata/Paragraphs/018 Change formatting end/b.html
src/test/resources/testdata/Paragraphs/018 Change formatting end/expected.html
src/test/resources/testdata/Paragraphs/018 Change formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/018 Change formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/018 Change formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start/a.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start/b.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start/expected.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/019 Add double formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle/a.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle/b.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle/expected.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/020 Add double formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end/a.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end/b.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end/expected.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/021 Add double formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start/a.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start/b.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start/expected.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/022 Remove double formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle/a.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle/b.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle/expected.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/023 Remove double formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end/a.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end/b.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end/expected.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/024  Remove double formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start/a.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start/b.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start/expected.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/025 Change double formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle/a.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle/b.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle/expected.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/026 Change double formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end/a.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end/b.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end/expected.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/027 Change double formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start/a.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start/b.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start/expected.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/028 Add Different formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle/a.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle/b.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle/expected.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/029 Add Different formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end/a.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end/b.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end/expected.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/030 Add Different formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start/a.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start/b.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start/expected.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/031 Remove Different formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle/a.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle/b.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle/expected.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/032 Remove Different formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end/a.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end/b.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end/expected.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/033  Remove Different formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start/a.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start/b.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start/expected.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start_variant_1/a.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start_variant_1/b.html
src/test/resources/testdata/Paragraphs/034 Change Different formatting start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle/a.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle/b.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle/expected.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/035 Change Different formatting middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end/a.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end/b.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end/expected.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end_variant_1/a.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end_variant_1/b.html
src/test/resources/testdata/Paragraphs/036 Change Different formatting end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start/a.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start/b.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start/expected.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/037 Add formatted text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle/a.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle/b.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle/expected.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/038 Add formatted Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end/a.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end/b.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end/expected.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/039 Add formatted Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start/a.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start/b.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start/expected.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/040 remove formatted text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle/a.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle/b.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle/expected.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/041 remove formatted Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end/a.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end/b.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end/expected.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/042 remove formatted Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start/a.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start/b.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start/expected.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/043 remove-add formatted Text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle/a.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle/b.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle/expected.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/044 remove-add formatted Text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end/a.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end/b.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end/expected.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/045 remove-add formatted Text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting/a.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting/b.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/046 Add text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/047 Add Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/048 Add Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting/a.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting/b.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/049 remove text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/050 remove Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/051 remove Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting/a.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting/b.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/052 remove-add Text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/053 remove-add Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/054 remove-add Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting/a.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting/b.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/055 Add formatted text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/056 Add formatted Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/057 Add formatted Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting/a.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting/b.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting/original.html~
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/058 remove formatted text start of formatting_variant_1/original.html~
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/059 remove formatted Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/060 remove formatted Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting/a.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting/b.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting/expected.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/061 remove-add formatted Text start of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting/a.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting/b.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting/expected.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/062 remove-add formatted Text middle of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting/a.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting/b.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting/expected.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting_variant_1/a.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting_variant_1/b.html
src/test/resources/testdata/Paragraphs/063 remove-add formatted Text end of formatting_variant_1/expected.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position/a.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position/b.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position/expected.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position_variant_1/a.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position_variant_1/b.html
src/test/resources/testdata/Paragraphs/100 Adding text and changing format at the same position_variant_1/expected.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position/a.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position/b.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position/expected.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position_variant_1/a.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position_variant_1/b.html
src/test/resources/testdata/Paragraphs/101 Changing format at the same position_variant_1/expected.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes/a.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes/b.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes/expected.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes_variant_1/a.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes_variant_1/b.html
src/test/resources/testdata/Paragraphs/102 Overlapping format changes_variant_1/expected.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position/a.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position/b.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position/expected.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position_variant_1/a.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position_variant_1/b.html
src/test/resources/testdata/Paragraphs/103 Adding new formatted text in the same position_variant_1/expected.html
src/test/resources/testdata/Paragraphs/114 Add formatted text around unformatted text middle/a.html
src/test/resources/testdata/Paragraphs/114 Add formatted text around unformatted text middle/b.html
src/test/resources/testdata/Paragraphs/114 Add formatted text around unformatted text middle/expected.html
src/test/resources/testdata/Paragraphs/115 Add formatted text around unformatted text end/a.html
src/test/resources/testdata/Paragraphs/115 Add formatted text around unformatted text end/b.html
src/test/resources/testdata/Paragraphs/115 Add formatted text around unformatted text end/expected.html
src/test/resources/testdata/Paragraphs/116 Remove formatted text around unformatted text start/a.html
src/test/resources/testdata/Paragraphs/116 Remove formatted text around unformatted text start/b.html
src/test/resources/testdata/Paragraphs/116 Remove formatted text around unformatted text start/expected.html
src/test/resources/testdata/Paragraphs/117 Remove formatted text around unformatted text middle/a.html
src/test/resources/testdata/Paragraphs/117 Remove formatted text around unformatted text middle/b.html
src/test/resources/testdata/Paragraphs/117 Remove formatted text around unformatted text middle/expected.html
src/test/resources/testdata/Paragraphs/118 Remove formatted text around unformatted text end/a.html
src/test/resources/testdata/Paragraphs/118 Remove formatted text around unformatted text end/b.html
src/test/resources/testdata/Paragraphs/118 Remove formatted text around unformatted text end/expected.html
src/test/resources/testdata/Paragraphs/119 Add Double split Format start/a.html
src/test/resources/testdata/Paragraphs/119 Add Double split Format start/b.html
src/test/resources/testdata/Paragraphs/119 Add Double split Format start/expected.html
src/test/resources/testdata/Paragraphs/120 Add Double split Format middle/a.html
src/test/resources/testdata/Paragraphs/120 Add Double split Format middle/b.html
src/test/resources/testdata/Paragraphs/120 Add Double split Format middle/expected.html
src/test/resources/testdata/Paragraphs/121 Add Double split Format end/a.html
src/test/resources/testdata/Paragraphs/121 Add Double split Format end/b.html
src/test/resources/testdata/Paragraphs/121 Add Double split Format end/expected.html
src/test/resources/testdata/Paragraphs/122 Remove Double split Format start/a.html
src/test/resources/testdata/Paragraphs/122 Remove Double split Format start/b.html
src/test/resources/testdata/Paragraphs/122 Remove Double split Format start/expected.html
src/test/resources/testdata/Paragraphs/123 Remove Double split Format middle/a.html
src/test/resources/testdata/Paragraphs/123 Remove Double split Format middle/b.html
src/test/resources/testdata/Paragraphs/123 Remove Double split Format middle/expected.html
src/test/resources/testdata/Paragraphs/124 Remove Double split Format end/a.html
src/test/resources/testdata/Paragraphs/124 Remove Double split Format end/b.html
src/test/resources/testdata/Paragraphs/124 Remove Double split Format end/expected.html
src/test/resources/testdata/Paragraphs/125 Add bold using span/a.html
src/test/resources/testdata/Paragraphs/125 Add bold using span/b.html
src/test/resources/testdata/Paragraphs/125 Add bold using span/expected.html
src/test/resources/testdata/Paragraphs/126 Add italic format using span/a.html
src/test/resources/testdata/Paragraphs/126 Add italic format using span/b.html
src/test/resources/testdata/Paragraphs/126 Add italic format using span/expected.html
src/test/resources/testdata/Paragraphs/127 Format Changes using span/a.html
src/test/resources/testdata/Paragraphs/127 Format Changes using span/b.html
src/test/resources/testdata/Paragraphs/127 Format Changes using span/expected.html
src/test/resources/testdata/Paragraphs/128 Remove span format/a.html
src/test/resources/testdata/Paragraphs/128 Remove span format/b.html
src/test/resources/testdata/Paragraphs/128 Remove span format/expected.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start/a.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start/b.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start/expected.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/129 Remove formatting and text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle/a.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle/b.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle/expected.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/130 Remove formmatting and text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end/a.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end/b.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end/expected.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/131 Remove formatting and text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start/a.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start/b.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start/expected.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/132 Remove formatting add text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle/a.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle/b.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle/expected.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/133 Remove formatting add text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end/a.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end/b.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end/expected.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/134 Remove formatting add text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start/a.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start/b.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start/expected.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start_variant_1/a.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start_variant_1/b.html
src/test/resources/testdata/Paragraphs/135 Add formatting and text start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle/a.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle/b.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle/expected.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/136 Add formatting and text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end/a.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end/b.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end/expected.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/137 Add formatting and text end_variant_1/expected.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start/a.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start/b.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start/expected.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start_variant_1/a.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start_variant_1/b.html
src/test/resources/testdata/Paragraphs/138 Add formatting remove test start_variant_1/expected.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle/a.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle/b.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle/expected.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle_variant_1/a.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle_variant_1/b.html
src/test/resources/testdata/Paragraphs/139 Add formatting remove text middle_variant_1/expected.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end/a.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end/b.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end/expected.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end_variant_1/a.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end_variant_1/b.html
src/test/resources/testdata/Paragraphs/140 Add formatting remove text end_variant_1/expected.html

Download

Click the following link to download daisydiff-master.zip.

daisydiff-master.zip




















Home »
  Java Free Code »
    Web »




CSS
CSS3
HTML
HTML5
HTTP
Web
Web Application
WebSite