jsdifflib icon indicating copy to clipboard operation
jsdifflib copied to clipboard

A javascript library for diffing text and generating corresponding HTML views

Results 22 jsdifflib issues
Sort by recently updated
recently updated
newest added

Github static pages are now hosted under github.io

@cemerick : Hi congratulations on the module, in Python there is: difflib.SequenceMatcher (None, str1, str2) .ratio () in the module you created there is a similar thing, does the same...

The current link is leading to a 404.

this is a quick hack to support word level diff with viewType = 2 param. ``` viewType:2, contextSize: 3 ``` Please see http://moniwiki.kldp.net/diff.html

You may want to update the link for the Demo from: http://cemerick.github.com/jsdifflib/demo.html to: http://cemerick.github.io/jsdifflib/demo.html The difference is **.com** no longer works, but **.io** does!

It's okey That before source code is not valid This one is okey and verify _Originally posted by @abbaskiko in https://github.com/cemerick/jsdifflib/issues/35#issuecomment-921964627_

declare diffview var, fixes gh-21 and gh-22

in README.asciidoc, the link https://cemerick.github.com/jsdifflib/demo.html that should redirect to a page where one can try the library, points to non existing page (404)

Currently, line numbers are displayed twice, which is graphically not so nice from my point of view. To overcome this, I added an option to omit displaying line numbers left...