This commit is contained in:
Talon Poole 2021-01-30 00:22:05 +00:00
parent 9793da8fe7
commit a56d44bde5
2 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
.nh .nh
.ad l .ad l
.\" Begin generated content: .\" Begin generated content:
.TH "gmi-web" "1" "2021-01-29" "1.0.0" .TH "gmi-web" "1" "2021-01-30" "1.0.0"
.P .P
.SH NAME .SH NAME
.P .P
@ -57,7 +57,7 @@ Render .html for all the .gmi files in the current directory
.P .P
.nf .nf
.RS 4 .RS 4
gmi-web --lang en $(find \&. -name *\&.gmi) gmi-web --lang en $(find \&. -name "*\&.gmi")
.fi .fi
.RE .RE
.P .P
@ -78,7 +78,7 @@ Then give the path to \fBgmi-web\fR --config.
.P .P
.nf .nf
.RS 4 .RS 4
gmi-web --config /path/to/my\&.json $(find \&. -name *\&.gmi) gmi-web --config /path/to/my\&.json $(find \&. -name "*\&.gmi")
.fi .fi
.RE .RE
.P .P

View file

@ -39,7 +39,7 @@ and mobile-friendly fashion!
Render .html for all the .gmi files in the current directory Render .html for all the .gmi files in the current directory
``` ```
gmi-web --lang en $(find . -name \*.gmi) gmi-web --lang en $(find . -name "\*.gmi")
``` ```
To use *--config* you will need a .json file with the flags you want to be To use *--config* you will need a .json file with the flags you want to be
@ -56,7 +56,7 @@ included.
Then give the path to *gmi-web* --config. Then give the path to *gmi-web* --config.
``` ```
gmi-web --config /path/to/my.json $(find . -name \*.gmi) gmi-web --config /path/to/my.json $(find . -name "\*.gmi")
``` ```