- What diff format does it accept?
- Two text blocks (paste both sides), or a unified diff patch (single-pane view of @@ ... @@ hunks). Side-by-side layout re-renders the pair; unified shows patch-style.
- Does it highlight word-level changes?
- Yes — within a changed line, individual word changes are highlighted. This makes typo fixes vs full rewrites easy to tell apart.
- Can I diff non-text content?
- Diff works on any text. For binary files, convert to a text representation first (hex dump, base64). For images, use an image diff tool — visual diffs differ from text diffs.
- Is the diff algorithm the same as git's?
- Conceptually yes — longest-common-subsequence (Myers algorithm). The highlighting heuristics may differ in edge cases but output matches git for most inputs.