diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 00a3d3d7fe640fcda53a44585683a8684ac35a76
parent a9dd7b48b804b0a3ce88f0109cd96b59a413d1bd
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sun, 25 Jul 2021 23:06:12 +0200

change man1 path

Diffstat:
MTESTING.md | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/TESTING.md b/TESTING.md @@ -7,7 +7,7 @@ This file holds notes for testing purposes. ### Plain Text Generate plain text from "runoff" text: ```bash -tbl man/diary.1 | nroff -man | less +tbl man1/diary.1 | nroff -man | less ``` ### `mandoc` HTML (preferred) @@ -18,7 +18,7 @@ sudo apt-get install mandoc Generate HTML file: ```bash -mandoc -Thtml man/diary.1 > man/diary.1.html +mandoc -Thtml man1/diary.1 > man1/diary.1.html ``` ### `groff` HTML @@ -29,5 +29,5 @@ sudo apt-get install groff Generate HTML file (`-t` for `tbl`): ```bash -groff -t -mandoc -Thtml man/diary.1 > man/diary.1.html +groff -t -mandoc -Thtml man1/diary.1 > man1/diary.1.html ```