Skip to content

Commit c9b5b1b

Browse files
authored
Update README.md
1 parent 12bd11d commit c9b5b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# AngleSharp Diffing - A diff/compare library for AngleSharp
2+
![Build and test status](https://github.com/egil/AngleSharp.Diffing/workflows/CI/badge.svg)
3+
24
This library makes it possible to compare a AngleSharp _control_ `INodeList` and a _test_ `INodeList` and get a list of `IDiff` differences between them.
35

46
The _control_ nodes represents the expected HTML tree, i.e. how the nodes are expected to look, and the _test_ nodes represents the nodes that should be compared to the _control_ nodes.
@@ -9,8 +11,6 @@ The _control_ nodes represents the expected HTML tree, i.e. how the nodes are ex
911
- `MissingDiff`/`MissingAttrDiff`: Represents a difference where a control node or control attribute was expected to exist, but was not found in the test nodes tree.
1012
- `UnexpectedDiff`/`UnexpectedAttrDiff`: Represents a difference where a test node or test attribute was unexpectedly found in the test nodes tree, but did not have a match in the control nodes tree.
1113

12-
![Build and test status](https://github.com/egil/AngleSharp.Diffing/workflows/CI/badge.svg)
13-
1414
## Usage
1515
To find the differences between a control HTML fragment and a test HTML fragment, using the default options, the easiest way is to use the `DiffBuilder` class, like so:
1616

0 commit comments

Comments
 (0)