├── .gitignore ├── .vscode └── launch.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── outcome_example.png ├── src └── main.rs └── testing └── test-book ├── book.toml └── src ├── 0001_doing_stuff ├── 0001_title.md ├── 0002_just_do_it.md └── README.md ├── 0002_having_stuff ├── 0001_booya.md ├── 0002_this_is_2.md └── README.md └── SUMMARY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/README.md -------------------------------------------------------------------------------- /assets/outcome_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/assets/outcome_example.png -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/src/main.rs -------------------------------------------------------------------------------- /testing/test-book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/testing/test-book/book.toml -------------------------------------------------------------------------------- /testing/test-book/src/0001_doing_stuff/0001_title.md: -------------------------------------------------------------------------------- 1 | # Title -------------------------------------------------------------------------------- /testing/test-book/src/0001_doing_stuff/0002_just_do_it.md: -------------------------------------------------------------------------------- 1 | # Just Do It -------------------------------------------------------------------------------- /testing/test-book/src/0001_doing_stuff/README.md: -------------------------------------------------------------------------------- 1 | # Main Text -------------------------------------------------------------------------------- /testing/test-book/src/0002_having_stuff/0001_booya.md: -------------------------------------------------------------------------------- 1 | # Booya -------------------------------------------------------------------------------- /testing/test-book/src/0002_having_stuff/0002_this_is_2.md: -------------------------------------------------------------------------------- 1 | # This Is 2 2 | -------------------------------------------------------------------------------- /testing/test-book/src/0002_having_stuff/README.md: -------------------------------------------------------------------------------- 1 | # Main Text 2 -------------------------------------------------------------------------------- /testing/test-book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmah309/mdbook-tools/HEAD/testing/test-book/src/SUMMARY.md --------------------------------------------------------------------------------