# README
DocGen
This package provides documentation generator with JSON or Markdown output.
Usage
Create a file and put next code into it.
package main
import (
"encoding/json"
"fmt"
"github.com/expr-lang/expr/docgen"
)
func main() {
// TODO: Replace env with your own types.
doc := docgen.CreateDoc(env)
buf, err := json.MarshalIndent(doc, "", " ")
if err != nil {
panic(err)
}
fmt.Println(string(buf))
}
Run go run your_file.go
. Documentation will be printed in JSON format.
Markdown
To generate markdown documentation:
package main
import "github.com/expr-lang/expr/docgen"
func main() {
// TODO: Replace env with your own types.
doc := docgen.CreateDoc(env)
print(doc.Markdown())
}
# Functions
No description provided by the author
# Type aliases
Identifier represents variable names and field names.
Kind can be any of array, map, struct, func, string, int, float, bool or any.
TypeName is a name of type in types map.