You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+112-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ A React Native module for parsing and displaying git diffs. This library was hea
4
4
5
5
## Overview
6
6
7
-
The purpose of this library is to parse and render a unified diff view for any provided diff(s). The flexible widget system also allows for rendering of custom elements on a per-line basis. The end result will look something like this:
7
+
The purpose of this library is to parse and render a unified diff view for any provided diff(s). The flexible widget system also allows for rendering of custom elements on a per-line (or "change") basis. The end result will look something like this:
8
8
9
9

10
10
@@ -16,16 +16,127 @@ The purpose of this library is to parse and render a unified diff view for any p
16
16
17
17
### Parsing Diffs
18
18
19
+
The top-level `parseDiff(diff: string): IFile[]` export is a wrapper around [gitdiff-parser](https://www.npmjs.com/package/gitdiff-parser), but strongly typed
20
+
and with some extra options:
21
+
22
+
-`nearbySequence: 'zip' | undefined`— the action to take when nearby sequences are encountered.
23
+
19
24
### Rendering Diff Hunks
20
25
26
+
The top-level `Diff` export is a component to be used for rendering a single diff. Here's a simple example:
0 commit comments