├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── node.js.yml │ └── npm-and-docker-publish.yml ├── .gitignore ├── .prettierrc.js ├── Dockerfile ├── LICENSE ├── README.md ├── assets └── pandiff.css ├── eslint.config.mjs ├── package.json ├── src ├── cli.ts ├── index.spec.ts └── index.ts ├── test ├── biblio.bib ├── diff-table.html ├── diff.atx.md ├── diff.docx ├── diff.docx.md ├── diff.html ├── diff.html.png ├── diff.md ├── diff.pdf.png ├── diff.tex ├── keep-new-metadata-diff.md ├── keep-no-metadata-diff.md ├── keep-old-metadata-diff.md ├── minus.png ├── new-metadata.md ├── new-table.md ├── new.docx ├── new.epub ├── new.md ├── new.org ├── new.rst ├── new.tex ├── new.textile ├── normalise.in.md ├── normalise.out.md ├── old-metadata.md ├── old-table.md ├── old.docx ├── old.epub ├── old.md ├── old.org ├── old.rst ├── old.tex ├── old.textile ├── plus.png ├── track_changes_deletion.docx ├── track_changes_deletion.md ├── track_changes_insertion.docx ├── track_changes_insertion.md ├── track_changes_move.docx └── track_changes_move.md ├── tsconfig.json └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | test/* linguist-documentation 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/npm-and-docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.github/workflows/npm-and-docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json'), 3 | }; 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/README.md -------------------------------------------------------------------------------- /assets/pandiff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/assets/pandiff.css -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/biblio.bib -------------------------------------------------------------------------------- /test/diff-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff-table.html -------------------------------------------------------------------------------- /test/diff.atx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.atx.md -------------------------------------------------------------------------------- /test/diff.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.docx -------------------------------------------------------------------------------- /test/diff.docx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.docx.md -------------------------------------------------------------------------------- /test/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.html -------------------------------------------------------------------------------- /test/diff.html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.html.png -------------------------------------------------------------------------------- /test/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.md -------------------------------------------------------------------------------- /test/diff.pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.pdf.png -------------------------------------------------------------------------------- /test/diff.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/diff.tex -------------------------------------------------------------------------------- /test/keep-new-metadata-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/keep-new-metadata-diff.md -------------------------------------------------------------------------------- /test/keep-no-metadata-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/keep-no-metadata-diff.md -------------------------------------------------------------------------------- /test/keep-old-metadata-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/keep-old-metadata-diff.md -------------------------------------------------------------------------------- /test/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/minus.png -------------------------------------------------------------------------------- /test/new-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new-metadata.md -------------------------------------------------------------------------------- /test/new-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new-table.md -------------------------------------------------------------------------------- /test/new.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.docx -------------------------------------------------------------------------------- /test/new.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.epub -------------------------------------------------------------------------------- /test/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.md -------------------------------------------------------------------------------- /test/new.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.org -------------------------------------------------------------------------------- /test/new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.rst -------------------------------------------------------------------------------- /test/new.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.tex -------------------------------------------------------------------------------- /test/new.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/new.textile -------------------------------------------------------------------------------- /test/normalise.in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/normalise.in.md -------------------------------------------------------------------------------- /test/normalise.out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/normalise.out.md -------------------------------------------------------------------------------- /test/old-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old-metadata.md -------------------------------------------------------------------------------- /test/old-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old-table.md -------------------------------------------------------------------------------- /test/old.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.docx -------------------------------------------------------------------------------- /test/old.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.epub -------------------------------------------------------------------------------- /test/old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.md -------------------------------------------------------------------------------- /test/old.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.org -------------------------------------------------------------------------------- /test/old.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.rst -------------------------------------------------------------------------------- /test/old.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.tex -------------------------------------------------------------------------------- /test/old.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/old.textile -------------------------------------------------------------------------------- /test/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/plus.png -------------------------------------------------------------------------------- /test/track_changes_deletion.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/track_changes_deletion.docx -------------------------------------------------------------------------------- /test/track_changes_deletion.md: -------------------------------------------------------------------------------- 1 | This is a text with a{--n excessively modified--} deletion. 2 | -------------------------------------------------------------------------------- /test/track_changes_insertion.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/track_changes_insertion.docx -------------------------------------------------------------------------------- /test/track_changes_insertion.md: -------------------------------------------------------------------------------- 1 | This is a text with {++two exciting++} insertions. 2 | -------------------------------------------------------------------------------- /test/track_changes_move.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/track_changes_move.docx -------------------------------------------------------------------------------- /test/track_changes_move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/test/track_changes_move.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidar/pandiff/HEAD/yarn.lock --------------------------------------------------------------------------------