diff --git a/main.go b/main.go index 363c984..acc5a8e 100644 --- a/main.go +++ b/main.go @@ -30,11 +30,12 @@ var ( width uint rootCmd = &cobra.Command{ - Use: "glow SOURCE", - Short: "Render markdown on the CLI, with pizzazz!", - SilenceErrors: false, - SilenceUsage: false, - RunE: execute, + Use: "glow SOURCE", + Short: "Render markdown on the CLI, with pizzazz!", + SilenceErrors: false, + SilenceUsage: false, + TraverseChildren: true, + RunE: execute, } )