aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2018-09-19 15:25:38 -0700
committerAdam Mathes <adam@trenchant.org>2018-09-19 15:25:38 -0700
commit82493767929c7ab279d92119ced3eadef7e317e6 (patch)
tree1f2f9306122eb7f4be502cca2205d9782c3e2319
parent71acb7807c4e6969d0c6d3038928bcc30d591b2c (diff)
downloadneko-82493767929c7ab279d92119ced3eadef7e317e6.tar.gz
neko-82493767929c7ab279d92119ced3eadef7e317e6.tar.bz2
neko-82493767929c7ab279d92119ced3eadef7e317e6.zip
add html export to command line help
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 36bc98c..29888b2 100644
--- a/main.go
+++ b/main.go
@@ -27,7 +27,7 @@ func main() {
flag.BoolVarP(&help, "help", "h", false, "print usage information")
flag.BoolVarP(&update, "update", "u", false, "fetch feeds and store new items")
flag.StringVarP(&newFeed, "add", "a", "", "add the feed at URL `http://example.com/rss.xml`")
- flag.StringVarP(&export, "export", "x", "", "export feed. format required: text, json or opml")
+ flag.StringVarP(&export, "export", "x", "", "export feed. format required: text, opml, html, or json")
// options -- defaults are set in config/main.go and overridden by cmd line
flag.StringVarP(&dbfile, "database", "d", "", "sqlite database file")