Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DocsCmd = &cobra.Command{ Use: "docs [flags] file [file...]", Short: "Work with help documents", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { gp, of, err := cli.SetupProcessor(cmd) cobra.CheckErr(err) for _, arg := range args { s, err := os.ReadFile(arg) cobra.CheckErr(err) var metaData map[string]interface{} inputReader := bytes.NewReader(s) _, err = frontmatter.Parse(inputReader, &metaData) cobra.CheckErr(err) metaData["path"] = arg err = gp.ProcessInputObject(metaData) cobra.CheckErr(err) } s, err := of.Output() cobra.CheckErr(err) fmt.Print(s) }, }
View Source
var JsonCmd = &cobra.Command{ Use: "json", Short: "Format JSON data", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { gp, of, err := cli.SetupProcessor(cmd) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Could not create glaze processors: %v\n", err) os.Exit(1) } inputIsArray, err := cmd.Flags().GetBool("input-is-array") if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error parsing input-is-array flag: %v\n", err) os.Exit(1) } for _, arg := range args { if arg == "-" { arg = "/dev/stdin" } f, err := os.Open(arg) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error opening file %s: %s\n", arg, err) os.Exit(1) } if inputIsArray { data := make([]map[string]interface{}, 0) err = json.NewDecoder(f).Decode(&data) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error decoding file %s as array: %s\n", arg, err) os.Exit(1) } i := 1 for _, d := range data { err = gp.ProcessInputObject(d) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error processing row %d of file %s as object: %s\n", i, arg, err) os.Exit(1) } i++ } } else { data := make(map[string]interface{}) err = json.NewDecoder(f).Decode(&data) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error decoding file %s as object: %s\n", arg, err) os.Exit(1) } err = gp.ProcessInputObject(data) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error processing file %s as object: %s\n", arg, err) os.Exit(1) } } } s, err := of.Output() if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error rendering output: %s\n", err) os.Exit(1) } fmt.Print(s) }, }
View Source
var MarkdownCmd = &cobra.Command{
Use: "markdown",
Short: "Convert markdown data",
}
View Source
var YamlCmd = &cobra.Command{ Use: "yaml", Short: "Format YAML data", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { if len(args) == 0 { fmt.Println("No input file specified") os.Exit(1) } gp, of, err := cli.SetupProcessor(cmd) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Could not create Glaze processor: %v\n", err) os.Exit(1) } inputIsArray, err := cmd.Flags().GetBool("input-is-array") if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error parsing input-is-array)lag: %v\n", err) os.Exit(1) } for _, arg := range args { if arg == "-" { arg = "/dev/stdin" } inputBytes, err := os.ReadFile(arg) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error reading file %s: %s\n", arg, err) os.Exit(1) } if inputIsArray { data := make([]map[string]interface{}, 0) err = yaml.Unmarshal(inputBytes, &data) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error decoding file %s as array: %s\n", arg, err) os.Exit(1) } i := 1 for _, d := range data { err = gp.ProcessInputObject(d) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error processing row %d of file %s as object: %s\n", i, arg, err) os.Exit(1) } i++ } } else { data := make(map[interface{}]interface{}) data2 := make(map[string]interface{}) err = yaml.Unmarshal(inputBytes, data) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error decoding file %s as object: %s\n", arg, err) os.Exit(1) } for k, v := range data { data2[fmt.Sprintf("%v", k)] = v } err = gp.ProcessInputObject(data2) if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error processing file %s as object: %s\n", arg, err) os.Exit(1) } } } s, err := of.Output() if err != nil { _, _ = fmt.Fprintf(os.Stderr, "Error rendering output: %s\n", err) os.Exit(1) } fmt.Println(s) }, }
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.