diff --git a/Cargo.lock b/Cargo.lock index 18a6f96..4c41de2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -369,7 +369,7 @@ dependencies = [ [[package]] name = "md2pdf" -version = "0.1.0" +version = "0.0.1" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "pulldown-cmark 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 5cfe273..b84d818 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "md2pdf" -version = "0.0.0" +version = "0.0.1" authors = ["Thomas Forgione "] description = "A small utility to convert markdown files to pdf exploiting tectonic." edition = "2018" +license = "MIT" +repository = "https://gitea.tforgione.fr/tforgione/md2pdf" +readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md new file mode 100644 index 0000000..867be4c --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# md2pdf + +*A small utility to convert markdown files to pdf exploiting +[tectonic](https://tectonic-typesetting.github.io).* + +### Usage + +``` +md2pdf -i input.md -o output.pdf +``` + +Thanks to [tectonic](https://tectonic-typesetting.github.io), we're able to +convert markdown to LaTeX to PDF really easily.