terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-docs/internal/tmplfuncs/tmplfuncs.go
dependabot[bot] 4e94047737
Bump github.com/hashicorp/terraform-plugin-docs from 0.14.1 to 0.15.0
Bumps [github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) from 0.14.1 to 0.15.0.
- [Release notes](https://github.com/hashicorp/terraform-plugin-docs/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-docs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/terraform-plugin-docs/compare/v0.14.1...v0.15.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/terraform-plugin-docs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-04 08:39:56 +00:00

45 lines
839 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tmplfuncs
import (
"fmt"
"os"
"strings"
)
func PrefixLines(prefix, text string) string {
return prefix + strings.Join(strings.Split(text, "\n"), "\n"+prefix)
}
func CodeFile(format, file string) (string, error) {
content, err := os.ReadFile(file)
if err != nil {
return "", fmt.Errorf("unable to read content from %q: %w", file, err)
}
sContent := strings.TrimSpace(string(content))
if sContent == "" {
return "", fmt.Errorf("no file content in %q", file)
}
md := &strings.Builder{}
_, err = md.WriteString("```" + format + "\n")
if err != nil {
return "", err
}
_, err = md.WriteString(sContent)
if err != nil {
return "", err
}
_, err = md.WriteString("\n```")
if err != nil {
return "", err
}
return md.String(), nil
}