From 58dcf810c8187df5a8558eef31fd4f4530748adf Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sun, 4 Aug 2024 22:12:45 +0700 Subject: all: update the CLI usage in the README There are three places for command usage: one in main Go doc, one in the program usage, and one in README. If we changes the flags we need to update three of them, and sometimes we forgot. To simplify, we remove the one in the Go doc main program. --- cmd/ciigo/main.go | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'cmd') diff --git a/cmd/ciigo/main.go b/cmd/ciigo/main.go index 9b5184d..d4d4fc9 100644 --- a/cmd/ciigo/main.go +++ b/cmd/ciigo/main.go @@ -3,29 +3,6 @@ // ciigo is a CLI to convert, embed, and/or serve a directory that contains // markup files, as HTML files. -// -// # Usage -// -// The following section describe how to use ciigo CLI. -// -// ciigo [-template ] [-exclude ] convert -// -// Scan the "dir" recursively to find markup files and convert them into HTML -// files. -// The template "file" is optional, default to embedded HTML template. -// -// ciigo [-template ] [-exclude ] [-out ] embed -// -// Convert all the markup files inside directory "dir" recursively and then -// embed them into ".go" source file. -// The output file is optional, default to "ciigo_static.go" in current -// directory. -// -// ciigo [-template ] [-exclude ] [-address ] serve -// -// Serve all files inside directory "dir" using HTTP server, watch changes on -// markup files and convert them to HTML files. -// If the address is not set, its default to ":8080". package main import ( -- cgit v1.3-5-g9baa