Generate Github like comparison based on diff2html.
You can compare string or given unified diff to generate pretty HTML.
yarn add react-gh-like-diff
# or
npm install react-gh-like-diff --save
react-gh-like-diff is based on diff2html. The default configuration:
const defaultOptions = {
originalFileName: 'Unknown-File-Name',
updatedFileName: 'Unknown-File-Name',
inputFormat: 'diff',
outputFormat: 'side-by-side',
showFiles: false,
matching: 'none',
matchWordsThreshold: 0.25,
matchingMaxComparisons: 2500
};
You can custom options for you want, just pass options
as props. The configuration you can reference here. 🔎
string
| defaults to''
Passing past string as past
prop with current
prop for comparison.
string
| defaults to''
Passing current string as current
prop with past
prop for comparison.
string
| defaults to''
Passing unified diff as prop to generate pretty HTML.
object
| optional, See here
Reference diff2html docs for extra configuration setting.
MIT © Peng Jie