Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var RootClis = RootClisT{ Version: version, Verbose: 1, HelpFlags: true, }
View Source
var RootCmd = &cobra.Command{ Use: "pdf2plain [input.pdf]", Short: "A wrapper command line tool to convert pdf files to plain text.", Long: `A wrapper command line tool to convert pdf files to plain text. More see here https://github.com/openanno/bioextr.`, Run: func(cmd *cobra.Command, args []string) { if RootClis.Clean { RootClis.HelpFlags = false } if len(args) > 0 { initCmd(cmd, args) convertor(cmd, args) RootClis.HelpFlags = false } if RootClis.HelpFlags { cmd.Help() } }, }
Functions ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.