Open mmrZHdK opened 8 years ago
There's isn't a clear cut way to do that with the current functionality, though there's some extensibility built in to create custom output formats. I do think there's a common desire for this, for folks looking to diff minimized JS, CSS, etc. so I'd happily review a pull request if you find a generic way to do this.
In terms of addressing your problem in the short term I can see two reasonable ways you could accomplish this in the short term.
;
to ;\n
so that you can see line-by-line diffs. This stackoverflow answer talks a bit more about this approach.<strong>
tags that represent inline changes. This isn't super clean but depending on your use case it could be part of an acceptable solution.
If you diff two strings that rarely have newlines or none at all, how would you avoid duplicating a lot of text in the unchanged part? Especially in the HTML output? Any hints on this?
For example:
"This is my string which has
a lot ofsome text but no newlines and only a very small fraction of information is changed"