Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any Rendered HTML Diff engine for .NET [closed]

Tags:

html

.net

diff

There are some questions on SO about Html diff engines, but i cant find right answer. What i need is .NET library for comparing two rendered html strings and displaying diff (like SO renders questions/answer editing revisions (example)).

like image 619
admax Avatar asked Jun 02 '10 09:06

admax


1 Answers

Accepts HTML, outputs HTML:

  • htmldiff.py (Python)
  • HTML Diff (C#)
  • HTML Diff (Ruby)
  • daisydiff (Java)
  • jhtmldiff (Java)

Accepts HTML, outputs a data structure:

  • HTML::Diff (Perl)
  • HTML::Differences (Perl)
like image 168
Zoë Peterson Avatar answered Oct 06 '22 01:10

Zoë Peterson