diff options
author | Adam Mathes <adam@trenchant.org> | 2018-09-19 15:25:38 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-09-19 15:25:38 -0700 |
commit | 82493767929c7ab279d92119ced3eadef7e317e6 (patch) | |
tree | 1f2f9306122eb7f4be502cca2205d9782c3e2319 | |
parent | 71acb7807c4e6969d0c6d3038928bcc30d591b2c (diff) | |
download | neko-82493767929c7ab279d92119ced3eadef7e317e6.tar.gz neko-82493767929c7ab279d92119ced3eadef7e317e6.tar.bz2 neko-82493767929c7ab279d92119ced3eadef7e317e6.zip |
add html export to command line help
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |