diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-10 19:47:52 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-10 19:47:52 +0200 |
commit | 7eac3c24255a86257d42ab38668cbd88dc96f55b (patch) | |
tree | 97d9da5e63c68949e7fb122c8c04c1a7845e04df | |
parent | 3521bff39c39ffc35c6b0cb65cac51591d51c8b9 (diff) |
Add the ‘-x’ command-line option
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | go.sum | 2 | ||||
-rw-r--r-- | gsp.1 | 11 | ||||
-rw-r--r-- | main.go | 14 |
4 files changed, 26 insertions, 3 deletions
@@ -1,3 +1,5 @@ module git.thomasvoss.com/gsp go 1.21.0 + +require git.thomasvoss.com/getgopt v1.0.1 @@ -0,0 +1,2 @@ +git.thomasvoss.com/getgopt v1.0.1 h1:i2eyNe0K0MEEwsVpCFVVNKqV//WpEv54wWPyY6yKU7s= +git.thomasvoss.com/getgopt v1.0.1/go.mod h1:xGRkf4eAWU0vXcnddTN5d6MB5dbca8+G1qM2PWSmZbg= @@ -6,6 +6,7 @@ .Nd better syntax for HTML and XML .Sh SYNOPSIS .Nm +.Op Fl x .Op Ar .Sh DESCRIPTION .Nm @@ -23,9 +24,17 @@ form of .Ql <tag> as opposed to XML where they take the form of .Ql <tag/> . -If the document begins with an XML document type, then +If the document begins with an XML document type or the +.Fl x +flag is specified, then .Nm will transpile to XML. +.Pp +The options are as follows: +.Bl -tag -width Ds +.It Fl x +Transpile to XML instead of HTML. +.El .Sh EXIT STATUS .Ex -std gsp .Sh EXAMPLES @@ -4,16 +4,26 @@ import ( "fmt" "os" + "git.thomasvoss.com/getgopt" "git.thomasvoss.com/gsp/formatter" "git.thomasvoss.com/gsp/parser" ) func main() { - if len(os.Args) == 1 { + for opt := byte(0); getgopt.Getopt(len(os.Args), os.Args, "x", &opt); { + switch opt { + case 'x': + parser.Xml = true + } + } + + os.Args = os.Args[getgopt.Optind:] + + if len(os.Args) == 0 { process("-") } - for _, arg := range os.Args[1:] { + for _, arg := range os.Args { process(arg) } } |