├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── lib.rs ├── main.rs ├── md2rs.rs ├── rs2md.rs ├── testing │ ├── mod.rs │ └── test_snippets.rs └── timestamp.rs └── tests └── runner.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *~ 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/md2rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/md2rs.rs -------------------------------------------------------------------------------- /src/rs2md.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/rs2md.rs -------------------------------------------------------------------------------- /src/testing/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/testing/mod.rs -------------------------------------------------------------------------------- /src/testing/test_snippets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/testing/test_snippets.rs -------------------------------------------------------------------------------- /src/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/src/timestamp.rs -------------------------------------------------------------------------------- /tests/runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnkfelix/tango/HEAD/tests/runner.rs --------------------------------------------------------------------------------