mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
3499750785
Sync \w Github Linguist v7.2.0 Includes new way of handling `heuristics.yml` and all `./data/*` re-generated using Github Linguist [v7.2.0](https://github.com/github/linguist/releases/tag/v7.2.0) release tag. - many new languages - better vendoring detection - update doc on update&known issues.
31 lines
627 B
Go
31 lines
627 B
Go
package generator
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
// Documentation generates regex matchers in Go for documentation files/dirs.
|
|
// It is of generator.File type.
|
|
func Documentation(fileToParse, _, outFile, tmplPath, tmplName, commit string) error {
|
|
data, err := ioutil.ReadFile(fileToParse)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var regexpList []string
|
|
if err := yaml.Unmarshal(data, ®expList); err != nil {
|
|
return err
|
|
}
|
|
|
|
buf := &bytes.Buffer{}
|
|
err = executeTemplate(buf, tmplName, tmplPath, commit, nil, regexpList)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return formatedWrite(outFile, buf.Bytes())
|
|
}
|