md2pdf

pandoc wrapper to convert markdown to pdf
Index Commits Files Refs README
commit a4291f17a4e5540be79d66babbe46692ac679525
parent 51db6943a0e1c3826bda67a352eb002eb7c245c1
Author: mjkloeckner <martinjkloeckner@gmail.com>
Date:   Sat, 29 Apr 2023 21:04:19 -0300

update README.md

Diffstat:
MREADME.md | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -13,3 +13,24 @@ default.
 - [Pandoc](https://pandoc.org/)
 - [Inter font](https://fonts.google.com/specimen/Inter)
 - [Fira math font](https://github.com/firamath/firamath)
+
+## Usage
+
+```shell
+$ ./md2pdf <input_file.md>
+```
+
+## Installation
+
+If you want to install this script to your system just copy the executable to
+`$HOME/.local/bin` to make it user wide or to `/usr/bin` to make it system-wide.
+
+- User wide:
+```shell
+$ cp ./md2pdf $HOME/.local/bin
+```
+
+- System wide:
+```shell
+$ cp ./md2pdf /usr/bin
+```