├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.MD ├── package.json ├── src ├── diff.util.ts ├── generator.ts ├── index.ts ├── jsdiff.util.ts ├── models │ └── models.ts ├── type-mapping.ts └── type-to-string.ts ├── tests ├── blockquote.test.ts ├── bold.test.ts ├── codeblock.test.ts ├── codespan.test.ts ├── link.test.ts ├── list.test.ts ├── table.test.ts ├── text.test.ts └── title.test.ts ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | 3 | /node_modules/ 4 | /.idea/ 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/README.MD -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/package.json -------------------------------------------------------------------------------- /src/diff.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/diff.util.ts -------------------------------------------------------------------------------- /src/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/generator.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jsdiff.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/jsdiff.util.ts -------------------------------------------------------------------------------- /src/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/models/models.ts -------------------------------------------------------------------------------- /src/type-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/type-mapping.ts -------------------------------------------------------------------------------- /src/type-to-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/src/type-to-string.ts -------------------------------------------------------------------------------- /tests/blockquote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/blockquote.test.ts -------------------------------------------------------------------------------- /tests/bold.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/bold.test.ts -------------------------------------------------------------------------------- /tests/codeblock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/codeblock.test.ts -------------------------------------------------------------------------------- /tests/codespan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/codespan.test.ts -------------------------------------------------------------------------------- /tests/link.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/link.test.ts -------------------------------------------------------------------------------- /tests/list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/list.test.ts -------------------------------------------------------------------------------- /tests/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/table.test.ts -------------------------------------------------------------------------------- /tests/text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/text.test.ts -------------------------------------------------------------------------------- /tests/title.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tests/title.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martijnvanduijneveldt/markdown-diff/HEAD/yarn.lock --------------------------------------------------------------------------------