diff2htmlPretty diff to html javascript library (diff2html)
diff2html
diff2html generates pretty HTML diffs from git diff or unified diff output.
Table of Contents
- Features
- Online Example
- Distributions
- Usage
- Diff Text Input
- Diff2HtmlUI Usage
- Diff2Html Usage
- Troubleshooting
- Contribute
- Contributors
- License
- Thanks
Features
-
Supports git and unified diffs
-
Line by line and Side by side diff
-
New and old line numbers
-
Inserted and removed lines
-
GitHub like visual style
-
Code syntax highlight
-
Line similarity matching
-
Easy code selection
Online Example
Go to diff2html
Distributions
- jsdelivr CDN
- WebJar
- Node Library
- NPM CLI
- Manually use from jsdelivr or build the project:
- Browser / Bundle
- Parser and HTML Generator
- bundles/js/diff2html.min.js - includes the diff parser and html generator
- Wrapper and helper adding syntax highlight, synchronized scroll, and other nice features
- bundles/js/diff2html-ui.min.js - includes the wrapper of diff2html with highlight for all
highlight.jssupported languages - bundles/js/diff2html-ui-slim.min.js - includes the wrapper of diff2html with "the most common"
highlight.jssupported languages - bundles/js/diff2html-ui-base.min.js - includes the wrapper of diff2html without including a
highlight.jsimplementation. You can use it without syntax highlight or by passing your own implementation with the languages you prefer
- bundles/js/diff2html-ui.min.js - includes the wrapper of diff2html with highlight for all
- Parser and HTML Generator
- NPM / Node.js library
- ES5
- lib/diff2html.js - includes the diff parser and html generator
- lib/ui/js/diff2html-ui.js - includes the wrapper of diff2html with highlight for all
highlight.jssupported languages - lib/ui/js/diff2html-ui-slim.js - includes the wrapper of diff2html with "the most common"
highlight.jssupported languages - lib/ui/js/diff2html-ui-base.js
- ES6
- lib-esm/diff2html.js - includes the diff parser and html generator
- lib/ui/js/diff2html-ui.js - includes the wrapper of diff2html with highlight for all
highlight.jssupported languages - lib/ui/js/diff2html-ui-slim.js - includes the wrapper of diff2html with "the most common"
highlight.jssupported languages - lib/ui/js/diff2html-ui-base.js - includes the wrapper of diff2html without including a
highlight.jsimplementation. You can use it without syntax highlight or by passing your own implementation with the languages you prefer
- ES5
- Browser / Bundle
Usage
Diff2Html can be used in various ways as listed in the distributions section. The two main ways are:
- Diff2HtmlUI: using this wrapper makes it easy to inject the html in the DOM and adds some nice features to the diff, like syntax highlight.
- Diff2Html: using the parser and html generator directly from the library gives you complete control about what you can do with the json or html generated.
Below you can find more details and examples about each option.
Diff Text Input
diff2html accepts the text contents of a unified diff or the superset format git diff (https://git-scm.com/docs/git-diff) (not combined or word diff). To provide multiples files as input just concatenate the diffs (just like the output of git diff).
Diff2HtmlUI Usage
Simple wrapper to ease simple tasks in the browser such as: code highlight and js effects
- Invoke Diff2html
- Inject output in DOM element
- Enable collapsible file summary list
- Enable syntax highlight of the code in the diffs
Diff2HtmlUI API
Create a Diff2HtmlUI instance
constructor(target: HTMLElement, diffInput?: string | DiffFile[]) // diff2html-ui, diff2html-ui-slim
constructor(target: HTMLElement, diffInput?: string | DiffFile[], config: Diff2HtmlUIConfig = {}, hljs?: HighlightJS) // diff2html-ui-base
Generate and inject in the document the Pretty HTML representation of the diff
draw(): void
Enable extra features
synchronisedScroll(): void
fileListToggle(startVisible: boolean): void
highlightCode(): void
Diff2HtmlUI Configuration
-
synchronisedScroll: scroll both panes in side-by-side mode:trueorfalse, default istrue -
highlight: syntax highlight the code on the diff:trueorfalse, default istrue -
fileListToggle: allow the file summary list to be toggled:trueorfalse, default istrue -
fileListStartVisible: choose if the file summary list starts visible:trueorfalse, default isfalse -
fileContentToggle: allow each file contents to be toggled:trueorfalse, default istrue - All the options from Diff2Html are also valid configurations in Diff2HtmlUI
Diff2HtmlUI Browser
Mandatory HTML resource imports
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css" />
<!-- Javascripts -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/diff2html/bundles/js/diff2html-ui.min.js"></script>
Init
const targetElement = document.getElementById('destination-elem-id');
const configuration = { drawFileList: true, matching: 'lines' };
const diff2htmlUi = new Diff2HtmlUI(targetElement, diffString, configuration);
// or
const diff2htmlUi = new Diff2HtmlUI(targetElement, diffJson, configuration);
Draw
diff2htmlUi.draw();
Syntax Highlight
NOTE: The highlight.js css should come before the diff2html css
<!-- Stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/github.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css" />
<!-- Javascripts -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/diff2html/bundles/js/diff2html-ui.min.js"></script>
Pass the option
highlightwith value true or invokediff2htmlUi.highlightCode()afterdiff2htmlUi.draw().
document.addEventListener('DOMContentLoaded', () => {
const diffString = `diff --git a/sample.js b/sample.js
index 0000001..0ddf2ba
--- a/sample.js
+++ b/sample.js
@@ -1 +1 @@
-console.log("Hello World!")
+console.log("Hello from Diff2Html!")`;
const targetElement = document.getElementById('myDiffElement');
const configuration = { drawFileList: true, matching: 'lines', highlight: true };
const diff2htmlUi = new Diff2HtmlUI(targetElement, diffString, configuration);
diff2htmlUi.draw();
diff2htmlUi.highlightCode();
});
Collapsable File Summary List
Add the dependencies.
<!-- Javascripts -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/diff2html/bundles/js/diff2html-ui.min.js"></script>
Invoke the Diff2HtmlUI helper Pass the option
fileListTogglewith value true or invokediff2htmlUi.fileListToggle()afterdiff2htmlUi.draw().
document.addEventListener('DOMContentLoaded', () => {
const targetElement = document.getElementById('myDiffElement');
var diff2htmlUi = new Diff2HtmlUI(targetElement, lineDiffExample, { drawFileList: true, matching: 'lines' });
diff2htmlUi.draw();
diff2htmlUi.fileListToggle(false);
});

