prosediff
Side-by-side comparison of prose, not code: Word documents (.docx) first, OpenDocument (.odt) and Markdown too.
Diff tools are made for code, where a line is a statement, a change is a line and nobody comments inside the file. prosediff is made for prose, where a line is a whole paragraph, a change is a few words inside it, paragraphs move, and co-authors leave comments in the margin: papers, reports, books, the drafts co-authors send back. It is optimised for Word files, reads the OpenDocument texts of LibreOffice (.odt) as well, and works on Markdown and any text file too; for code, a code diff tool serves better.
It writes a self-contained HTML page showing the differences between two versions side by side: the older version on the left, the newer on the right, each paragraph facing the paragraph it came from, changed words highlighted inside it. Text that moved is followed to its new place even when it was edited on the way. The versions are two Word or OpenDocument documents, two Markdown or text files, two folders, or commits of a git repository, its index (staged changes) or working tree. Paragraphs wrap and are numbered, changes are described in plain English, and the new and removed comments of Word documents are shown and listed.
Why prosediff
Tools for comparing versions of a text fall into two camps, and neither serves a paper written with co-authors well:
- Code diff tools (
git diff, GitHub and GitLab, diff2html, delta, Meld and the like) compare plain text line by line. They show a Word document as a binary file, and a paragraph kept on one long line as one line that changed, often without wrapping it. - Word's own Compare Documents reads Word files, but its result is a third Word document full of revision marks, to review in Word: it cannot compare a folder, a git history or a Markdown file, and it leaves you to work out which comments are new.
prosediff sits between the two:
- It compares Word documents directly:
prosediff --files draft.docx draft_returned.docxshows what a co-author changed, whatever they tracked or did not. Their tracked changes are accepted (or rejected) exactly as Word would, spaces included, and their comments are kept: each shown where it sits, with its author and date, new comments marked 🆕, and all listed in a panel. Only new and removed comments are shown: those already in the old version are left out, even where they moved. The same works on OpenDocument texts (.odt) from LibreOffice, both read directly (no conversion to Markdown: formatting, languages and comments are kept as they are), on the Markdown thatpandocmakes of a Word file, and on Word files in git, whereprosediff --setup-gitalso hasgit diffitself show them as text. - It lines the two versions up correctly: each edited paragraph faces the paragraph it came from, however much it was rewritten, and a paragraph inserted, deleted or split does not shift the ones below it onto the wrong partners. A paragraph unrelated to anything on the other side is shown as removed or added rather than forced against a stranger. Comments and footnote numbers do not disturb the alignment: a renumbered footnote or a comment that moved is no change.
- It follows text that moved, even when it changed: a paragraph (or,
with
--by-sentence, a sentence) moved elsewhere is shown at both ends, tinted as a move, with the words edited on the way highlighted; how alike it must stay to count as moved is set with--move-similarity. Code diff tools show the same text as one deletion and one unrelated insertion. - It is made for prose: long lines wrap, changes are highlighted word by
word and down to the letter within a word, each change is described in
plain English on hover (
changed "repeat" to "repeated"), words are counted as well as lines, and Markdown can be shown formatted. - It works from git or without it: two commits, the staged or
uncommitted changes, two files or two folders, from the command line,
from a window, or from
git difftool. - The result is one self-contained HTML file: no server, no network, no Word needed to read it. It can be attached to an e-mail, so a co-author sees what changed since they last read the paper, and printed or saved as PDF.
Usage
prosediff --git REPO BASE [TARGET] [options]
prosediff --files OLD NEW [options]
prosediff --folders OLD NEW [options]
prosediff --setup-git [REPO | --global]
prosediff --to-markdown FILE
(installed: uv tool install prosediff; from a checkout: uv run prosediff ...)
OpenDocument texts (.odt) need an optional dependency, odfdo: install
"prosediff[odt]" instead (uv tool install "prosediff[odt]", or
pip install "prosediff[odt]"). Without it, an .odt file is listed as not
read, with that advice.
| Argument / option | Meaning |
|---|---|
--git REPO BASE [TARGET] |
compare commits of a git repository. REPO: the repository, or any folder inside it; BASE: the older commit (hash, branch, tag, HEAD~2, ...); TARGET: the newer commit; without it, BASE is compared with the working tree (tracked files), as git diff BASE does |
--files OLD NEW |
compare two files, whatever their names, outside git |
--folders OLD NEW |
compare two folders, file by file, outside git |
--include PATTERNS |
with --folders, compare only the files matching these glob patterns, separated by | (quote them), e.g. "*.docx|*.md"; a pattern is matched against each file's name, or its path within the folder when it has a /, ignoring case. Default *.docx|*.odt|*.md|*.typ|*.txt; "" compares every file. The lock files an open document leaves beside it (Word's ~$name.docx, LibreOffice's .~lock.name.odt#) are always left out. In the GUI, the "Folders: only" box |
--cached |
with --git, compare BASE with the index instead, as git diff --cached BASE does |
--untracked |
with --git and the working tree, also show the untracked files .gitignore does not exclude |
-w, --ignore-whitespace |
compare lines ignoring whitespace, as git diff -w |
-p, --path PATH |
with --git or --folders, restrict the diff to this file or folder (repeatable) |
-o, --output FILE |
output file. Default: with --open, a new page in the temporary folder; otherwise, comparing two folders, prosediff.html in the new one (never compared itself when the folders are compared again), else diff.html. The GUI puts the page comparing two folders into the new one too |
-U, --context N |
unchanged lines shown around each change, in every file; unset, 0 in Markdown files and Word documents (whose lines are whole paragraphs) and 3 in the others. In the GUI, the "Context lines" box: auto or a number |
--full |
show every line of each changed file |
--max-hidden N |
unchanged lines embedded per gap for the page to reveal (default 500); longer gaps are left out, to keep the page light |
--align left|justify |
alignment of wrapped lines (default left) |
--no-fold-comments |
compare the comment markup of Markdown and Word documents as text; by default each comment added or removed since the base is shown as a 💬 marker (🆕 when added), with the author, the comment and its date on hover, and listed in a panel, while the comments both sides have are left out |
--empty-comments |
also show the comments that have no text, left out by default (listed as "(no text)" in the panel) |
--docx-changes accept|reject|all |
the tracked changes of Word and OpenDocument documents: accept them (default), reject them, or keep them all, shown as Word shows them (insertions underlined, deletions struck through, who made each and when on hover) |
--md-filter COMMAND |
shell command (cmd.exe on Windows, sh elsewhere) both versions of every Markdown file (not Word or OpenDocument files, which are not read as Markdown) are piped through, stdin to stdout, before comparing; line numbers are then those of the filtered text |
--by-sentence |
compare the prose of Markdown files and Word documents sentence by sentence instead of paragraph by paragraph: a sentence moved between paragraphs is recognised, and each sentence is labelled with its line and its place in it (12.3) |
--language CODE |
the language of the prose: its rules split sentences with --by-sentence (about forty languages are known; others fall back to a simple rule), and the page hyphenates wrapped lines by it. A code, e.g. en, it, de, fr, pt-br; document, the languages Word and OpenDocument files mark their text with, in the runs' and the styles' settings: each paragraph is split and hyphenated by its own, and the file's language is the one most of its letters are marked with, for the paragraphs that mark none (an error for Markdown and text files); or guess, guessed from each file's text (py3langid). Default: document for Word and OpenDocument files, guess for the others and for a document that marks no language. A file whose language is unknown (too short or too mixed to guess) is split by English rules and not hyphenated |
--encoding NAME |
the encoding of text and Markdown files, e.g. utf-8, cp1252, latin-1 (Word and OpenDocument files carry their own). Default auto: UTF-8, unless a file cannot be read as UTF-8 or reads with control characters; then the encoding is guessed with cchardet (Mozilla's uchardet, reliable even on a few words), or, when its guess cannot read the file, with charset-normalizer; Windows-1252 is preferred when it reads the text alike, and the file header says which was used. In the GUI, the "Text encoding" box |
--move-similarity X |
how alike, above 0 and at most 1, an edited line must be to where it reappears to count as moved (default 0.8; 1: only lines moved unchanged) |
--open |
open the page in the browser once it is written |
--setup-git |
set git up to show Word and OpenDocument files as text and to open prosediff pages from git difftool (see below), for the repository REPO (default: the current folder) |
--global |
with --setup-git, for every repository of the user instead |
--to-markdown FILE |
print a Word or OpenDocument file as Markdown (pandoc's: formatting, comments and tracked changes included), tracked changes as --docx-changes says: what git diff shows once set up |
--version |
print the version |
Examples:
prosediff --git . HEAD~1 HEAD -o review.html: the last commit;prosediff --git . HEAD --untracked: everything not yet committed;prosediff --git . HEAD --cached: what the next commit would record;prosediff --files draft_v1.docx draft_v2_returned.docx: what a co-author changed and commented, from the two Word files;prosediff --folders submitted/ revised/: two folders, file by file (their Word, OpenDocument, Markdown, Typst and text files;--includepicks others);prosediff --files draft.odt draft_returned.odt --open: two LibreOffice documents, the page opened in the browser.
With git's own commands
prosediff --setup-git sets up the repository it is run in (or REPO;
--global: every repository of the user) so that git's own commands
understand documents:
git diff,git log -pandgit showshow a Word or OpenDocument file as Markdown, instead of "Binary files differ": a textconv driver runningprosediff --to-markdown, given the*.docxand*.odtfiles in.git/info/attributes(not committed; with--global, git's global attributes file);git difftool -t prosediffopens a prosediff page for each changed file, andgit difftool -d -t prosediffone page for them all (on Windows, if git says it "could not symlink", add--no-symlinks). A repository set up by prosediff 0.3.1 or earlier needsprosediff --setup-gitagain forgit difftool -d, which the--filesit was given no longer accepts.
Both call the Python prosediff was installed with (python -m prosediff),
so they keep working whether or not its scripts are on PATH. Running it
again changes nothing; git config --unset and the attributes file undo it.
The window
prosediff-gui opens a window to choose what to compare, drawn with
ttkbootstrap in its Bootstrap theme, light
or dark as the system is set (Windows' app mode, macOS's appearance; light
elsewhere), the title bar too on Windows.
prosediff-gui REPOSITORY opens it with a git repository filled in (or the
repository a folder belongs to); prosediff-gui FILE.docx (or .odt, .md) first asks, in a
file dialog, for the file to compare it with, the older of the two going on
the left; prosediff-gui OLD NEW opens it with two Markdown, Word or
OpenDocument files, or two folders. Any other arguments (a folder outside git, a .txt file,
three files) show an error box listing the arguments received, and the
program exits once it is dismissed.
The Files tab has a button to swap the two.
To have it at hand, install it once:
uv tool install --editable C:\path\to\prosediff
(--editable "C:\path\to\prosediff[odt]" to read OpenDocument texts too.)
This puts prosediff and prosediff-gui on PATH (editable: they always run
the project's current code; uv tool uninstall prosediff removes them). On
Windows, prosediff-gui.exe is a windowed program: double-clicked, pinned,
behind a shortcut or with files dropped on it, it opens no console.
scripts/prosediff_gui.bat (Windows) and scripts/prosediff_gui.sh (bash:
Cygwin, Git Bash, Linux, macOS) start the same window, the installed one when
there is one, else from the project; a batch file itself always shows a
console for a moment.
- Git repository: pick a folder; base and target are chosen among the
working tree, the index and the latest 200 commits (hash, date, author,
subject), or typed as any ref (
HEAD~15, a tag). The window starts from the uncommitted changes when there are any, otherwise from the last commit. Optionally, untracked files and a list of paths (separated by;). - Files or folders: two files (whatever their names, Word documents
included) or two folders, of which only the files matching the patterns
of "Folders: only" (
--include) are compared. - Options: besides those below, comparing sentence by sentence, the
similarity at which an edited line counts as moved, and the document
language (
default: the one Word and OpenDocument files mark, the others guessed;document;guess, guessed from each file; or a code such asit), which splits sentences and hyphenates lines.
Below, the options that matter when reading a diff (comment markers, Word
tracked changes, alignment, context lines or whole files, whitespace) and
where to save the page (by default, comparing two folders, prosediff.html
in the new one; otherwise a new page in the temporary folder).
Compare (or Ctrl+Enter) writes the page and opens it in the browser; the
comparison runs in the background, and the window remembers the choices for
the next time (%APPDATA%\prosediff\gui.json).
The page
- The two sides (hash or file name, subject, author, date) and, for commits, the commits in between (reachable from the target, or from HEAD for the index and the working tree, and not from the base; the 50 newest are listed).
- A comments panel: every comment with its author and date, marked new, removed or unchanged, each linked to the line it sits in (unchanged comments are in a collapsed list). In the text, a comment is a 💬 marker, or 🆕 when it was added since the base; hovering or focusing it shows the author in bold, the comment below and its date in grey.
- The changed files with their counts of lines and words added and removed (and moved lines), linked to their tables; buttons expand or collapse every file at once.
- Each file as a collapsible four-column table, its header sticking to the top while it scrolls. Long lines wrap instead of scrolling sideways, so prose stays readable. Unchanged lines beyond the context are folded into a "show N unchanged lines" link that reveals them.
- Changed words highlighted within changed lines; a word changed into a similar one ("repeat" to "repeated") has only its changed letters highlighted.
- A removed line that reappears elsewhere in the file (at least 20 non-space characters) is shown as moved, in its own colour, with "moved to line N" / "moved from line N": as it was (spacing aside), or lightly edited (at least 80% similar), in which case its edits are highlighted too.
- Changed images (PNG, JPEG, GIF, WebP, BMP, up to 5 MB) old and new side by side; other binary files are listed but not shown.
- A toolbar: the number of changes, with
nandp(or its arrows) to jump to the next and previous change; five icon buttons (hovering any toolbar item shows its name, what it does and its key):ufor one column instead of two (each changed line shows its old version above its new one);ffor the text formatted, on by default, or plain (formatted: Markdown's syntax hidden, emphasis, headings, links and citations styled, a document's bold, italic, underline and the like shown, prose in a proportional font);ifor comments inline, each written out after its marker (its author and text), as on paper;tto tint the whole of an edited line, as most diff tools do (by default only its changed words are coloured, and its gutter; the tint stops short of the space between paragraphs);mfor the formatting changes, on by default: text of a Word or OpenDocument file whose words are the same but whose formatting changed (made bold or italic, underlined, struck through, made superscript, subscript, a link or a heading) is marked in amber, what changed shown on hover, the unchanged lines holding such changes unfolded, and each file's header says in how many lines; a spacing stepper, − and + either side of the value (or[and], or the arrow keys on the value, an ARIA spinbutton), for less or more space between the paragraphs of Markdown and Word documents; and a checkbox for the comment tooltips (on by default). The browser remembers the views, the spacing and the checkbox. - The prose of Markdown files and Word documents is hyphenated by the rules
of its language (
--language: by default the one a Word or OpenDocument file marks each paragraph with, otherwise guessed from the file's text): soft hyphens placed by pyphen, so every browser breaks words the same way, on screen and on paper, without dictionaries of its own; copying text leaves them behind. - A flag shows the language: one in the file header when all of a file's
paragraphs are in the same language, or one before each paragraph's
number when a Word or OpenDocument file marks some paragraphs with another
language. Its tooltip names the language and how it was found: marked in
the document, guessed from the text, or given with
--language. The flags are SVGs of flag-icons (MIT), embedded in the page, so they show on Windows too, which has no flag emoji. - Printing (or saving as PDF from the browser's Print dialog) opens every file, drops the toolbar and buttons, keeps the colours (the light ones, even from a browser in dark mode), lets a long paragraph continue on the next page (never leaving a lone line either side) rather than leave the rest of a page blank, and narrows the line-number gutters so the text columns fit a portrait page. What the screen shows on hover is written out: each comment's author and text after its marker, and where a moved line went. A file running over several pages repeats its column headings (its name, old and new) at the top of each, and folded unchanged lines print as a quiet "⋯ N unchanged lines".
Changes are also marked without colour, by a sign in the line-number gutter
(− removed, + added, ~ changed, → ← moved), and every changed row
tells screen readers what it is. The page follows the browser's light or dark
mode and needs no network: the CSS, the JavaScript and the images are inline.
How it works
GitPython resolves the sides and lists the changed files, with rename
detection (git diff -M); two folders are compared by path, a file that
disappears and reappears identical elsewhere counting as renamed. The lines
of every changed file are aligned by git itself, git diff --no-index --histogram --unified=0 on temporary copies, one process for all files, of
which only the hunk headers are read.
Within a block of replaced lines, each old line is paired with its most similar new line. Similarity is the share of words and punctuation two lines have in common, in order (twice their longest common subsequence over their total length, computed by rapidfuzz), lines at least half similar are paired so that the total similarity is highest without crossing, and the lines left in between are paired in order. A line inserted in the middle of an edited paragraph thus stands alone instead of shifting every pair below it. Paired lines are compared again word by word, and a word replaced by a single word is compared letter by letter when at least half its letters survive. Moved lines are found among the lines left removed and added, identical ones first, then the most similar pairs. The page is rendered with Jinja2.
Word and OpenDocument files are read directly, not converted to
Markdown. A Word document is read with python-docx, which opens the
document and resolves its styles, formatting, links and comments; its
paragraphs are then walked element by element into paragraphs of styled
text, so everything lands where it sits in the text: headings, list items,
tables, footnotes and endnotes, links, bold, italic, underline,
strikethrough, superscript and subscript, the language each paragraph is
marked with, equations as linear text (DV_(it) = β ⋅ (a)/(b)), and each
comment, with its author and date, where it starts. Tracked changes
are settled during the walk (accepting keeps the inserted runs and drops the
deleted ones, rejecting the reverse, "all" keeps both as marked spans), so
the spaces at the edges of a change stay where Word had them, comments
anchored in deleted text are kept, and footnotes referenced only from
deleted text are dropped with it. Headers, footers and page layout are not
part of the comparison. Nothing outside Python is needed: no Word, no
pandoc. On a 12,000-word manuscript with 26 comments and tracked changes by
two co-authors, the accepted and rejected texts match pandoc's word for word.
Each paragraph is then compared as its text alone, with the formatting of
each of its characters beside it: no Markdown syntax in the text, so an
asterisk or a bracket typed in the document is just text, and a change of
formatting alone (a word made bold) is told apart from a change of words.
The rows of a document are numbered by paragraph (1, 2, 3, and 3.1, 3.2 for
the sentences of paragraph 3 with --by-sentence); Markdown files keep
their line numbers. Markdown is only written from a document for git's own
commands (--to-markdown, git diff once set up), in pandoc's syntax.
An OpenDocument text is read the same way with odfdo, which opens the
package and resolves the styles that make a span bold, italic, underlined
and so on, into the same paragraphs: headings, lists, tables, footnotes,
links, and each comment (office:annotation) where it starts. Its tracked changes are settled as
well: an insertion is the text between two markers, kept or dropped, and a
deletion a marker whose text LibreOffice keeps apart, put back when the
changes are rejected.
Folding comments replaces each comment (in a Markdown file, each comment
span, before any filter runs) with one character of the Unicode private use
area standing for its author and text: a comment is then compared like a
word, the same comment matches on both sides even when its id was
renumbered, and a filter cannot cut it in two. The characters become markers when the page is
built. The comments present on both sides are then taken out of the text,
with the spaces around them (one is left where a comment stood between two
words), before the lines are lined up: they are never shown, and a
paragraph that only gained a comment moved over from its neighbour is not a
change. A paragraph with a new or removed comment is shown.
In a Markdown file, the formatted view recognises the common inline Markdown (headings, block quotes, code, strong, emphasis, links, images, citations, pandoc spans with attributes) with regular expressions, since no Markdown parser reports where each inline element starts and ends in the source. Each character gets its style classes, and every piece of text the diff emits is cut into runs of equal style, so formatting and change markup never have to nest.
Files are read as UTF-8, with undecodable bytes replaced, and split into lines as git does (on LF; CRLF counts as LF). A file is binary if its first 8,000 bytes contain a NUL byte, as git decides.
From Python:
from prosediff import compare, compare_paths, render
html = render(compare("path/to/repo", "HEAD~1", "HEAD", context=3))
html = render(compare_paths("v1.docx", "v2.docx", fold_comments_md=True))
Development
uv run pytest # the tests
uv run playwright install chromium # once, for the browser tests
uv run ruff check && uv run ruff format --check
uv run --with pillow python docs/make_screenshots.py # the README screenshots
uv run --with pillow python docs/make_icon.py # the window icons, from docs/logo.svg
The tests build throwaway repositories with GitPython and need git on
PATH; the browser tests need Playwright's Chromium, and are skipped
without it. The Word tests write their documents with python-docx, or as raw
XML for what it cannot write (tracked changes, footnotes, equations), and
the OpenDocument tests as raw XML. The git tests keep git's global and
system settings out of the way. .github/workflows/tests.yml runs
the linter, and the tests on Windows, Linux and macOS with Python 3.11 and
3.14.
Release files for prosediff 0.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| prosediff-0.4.0.tar.gz | 692.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| prosediff-0.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.4 MB
Release files / prosediff-0.4.0.tar.gz
| Download URL | prosediff-0.4.0.tar.gz |
|---|---|
| Size | 692.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
63a1ffdfa578eb19fe9857273a1cabc08e282732716e6b2f6a15804ca0b817c9
|
|
BLAKE2b-256 checksum How to use checksums |
ad11cf44347c5e90530945e982a20d483581908f7dba572446b726d2430feb41
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / prosediff-0.4.0-py3-none-any.whl
| Download URL | prosediff-0.4.0-py3-none-any.whl |
|---|---|
| Size | 692.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9b3811d75df6e8c87a91291740c184c749eaa0dd5e962b2e0e0ce5a5ddaedaa9
|
|
BLAKE2b-256 checksum How to use checksums |
fbd69ea21d01ca99bc60a6ddc5ea3f5f4d4e1e6919e882fa8c27d9bd4e1a0499
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|