An open API service indexing awesome lists of open source software.

https://github.com/muesli/mango-cobra

cobra adapter for mango
https://github.com/muesli/mango-cobra

Last synced: 6 months ago
JSON representation

cobra adapter for mango

Awesome Lists containing this project

README

        

# mango-cobra

[![Latest Release](https://img.shields.io/github/release/muesli/mango-cobra.svg)](https://github.com/muesli/mango-cobra/releases)
[![Build Status](https://github.com/muesli/mango-cobra/workflows/build/badge.svg)](https://github.com/muesli/mango-cobra/actions)
[![Go ReportCard](https://goreportcard.com/badge/muesli/mango-cobra)](https://goreportcard.com/report/muesli/mango-cobra)
[![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://pkg.go.dev/github.com/muesli/mango-cobra)

cobra adapter for [mango](https://github.com/muesli/mango).

## Example

```go
import (
"fmt"

mcobra "github.com/muesli/mango-cobra"
"github.com/muesli/roff"
"github.com/spf13/cobra"
)

var (
rootCmd = &cobra.Command{
Use: "mango",
Short: "A man-page generator",
}
)

func main() {
manPage, err := mcobra.NewManPage(1, rootCmd)
if err != nil {
panic(err)
}

manPage = manPage.WithSection("Copyright", "(C) 2022 Christian Muehlhaeuser.\n"+
"Released under MIT license.")

fmt.Println(manPage.Build(roff.NewDocument()))
}
```