├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── periodic.yml │ └── regression.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── config.rs ├── fixer.rs ├── linter.rs ├── main.rs ├── matcher.rs ├── printer.rs └── util.rs └── testcase ├── original ├── 01_hello.md ├── 02_comment.md ├── 03_mismatch_lines.md ├── 04_missing_file.md ├── 05_keep_original.md └── 06_no_trailing_new_line.md ├── original_keep_comment ├── 01_hello.md ├── 02_comment.md ├── 03_mismatch_lines.md └── 04_missing_file.md ├── translated ├── 01_hello.md ├── 02_comment.md ├── 03_mismatch_lines.md ├── 05_keep_original.md └── 06_no_trailing_new_line.md └── translated_keep_comment ├── 01_hello.md ├── 02_comment.md └── 03_mismatch_lines.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/periodic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/.github/workflows/periodic.yml -------------------------------------------------------------------------------- /.github/workflows/regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/.github/workflows/regression.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/README.md -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/fixer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/fixer.rs -------------------------------------------------------------------------------- /src/linter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/linter.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/matcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/matcher.rs -------------------------------------------------------------------------------- /src/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/printer.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/src/util.rs -------------------------------------------------------------------------------- /testcase/original/01_hello.md: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /testcase/original/02_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/original/02_comment.md -------------------------------------------------------------------------------- /testcase/original/03_mismatch_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/original/03_mismatch_lines.md -------------------------------------------------------------------------------- /testcase/original/04_missing_file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcase/original/05_keep_original.md: -------------------------------------------------------------------------------- 1 | Hello 2 | 3 | -------------------------------------------------------------------------------- /testcase/original/06_no_trailing_new_line.md: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /testcase/original_keep_comment/01_hello.md: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /testcase/original_keep_comment/02_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/original_keep_comment/02_comment.md -------------------------------------------------------------------------------- /testcase/original_keep_comment/03_mismatch_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/original_keep_comment/03_mismatch_lines.md -------------------------------------------------------------------------------- /testcase/original_keep_comment/04_missing_file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcase/translated/01_hello.md: -------------------------------------------------------------------------------- 1 | 4 | こんにちは 5 | -------------------------------------------------------------------------------- /testcase/translated/02_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/translated/02_comment.md -------------------------------------------------------------------------------- /testcase/translated/03_mismatch_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/translated/03_mismatch_lines.md -------------------------------------------------------------------------------- /testcase/translated/05_keep_original.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/translated/05_keep_original.md -------------------------------------------------------------------------------- /testcase/translated/06_no_trailing_new_line.md: -------------------------------------------------------------------------------- 1 | 4 | こんにちは 5 | -------------------------------------------------------------------------------- /testcase/translated_keep_comment/01_hello.md: -------------------------------------------------------------------------------- 1 | 4 | こんにちは 5 | -------------------------------------------------------------------------------- /testcase/translated_keep_comment/02_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/translated_keep_comment/02_comment.md -------------------------------------------------------------------------------- /testcase/translated_keep_comment/03_mismatch_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalance/mdbook-transcheck/HEAD/testcase/translated_keep_comment/03_mismatch_lines.md --------------------------------------------------------------------------------