mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 19:51:58 +01:00
894a641ef8
Clean up docs Signed-off-by: jolheiser <john.olheiser@gmail.com> Add generated docs Signed-off-by: jolheiser <john.olheiser@gmail.com> Update go.sum Signed-off-by: jolheiser <john.olheiser@gmail.com> Fix remote parsing Signed-off-by: jolheiser <john.olheiser@gmail.com> Refactor and clean up Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/sip/pulls/29
36 lines
440 B
Go
36 lines
440 B
Go
// +build docs
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"gitea.com/jolheiser/sip/cmd"
|
|
)
|
|
|
|
func main() {
|
|
app := cmd.NewApp("docs")
|
|
|
|
fi, err := os.Create("docs.md")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
md, err := app.ToMarkdown()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Clean up the header
|
|
md = md[strings.Index(md, "#"):]
|
|
|
|
if _, err := fi.WriteString(md); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if err := fi.Close(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|