mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
33 lines
740 B
Go
33 lines
740 B
Go
package utils
|
|
|
|
import (
|
|
"os"
|
|
"regexp"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
func RemoveFrontmatter(content []byte) []byte {
|
|
if frontmatterBoundaries := detectFrontmatter(content); frontmatterBoundaries[0] == 0 {
|
|
return content[frontmatterBoundaries[1]:]
|
|
}
|
|
return content
|
|
}
|
|
|
|
var yamlPattern = regexp.MustCompile(`(?m)^---\r?\n(\s*\r?\n)?`)
|
|
|
|
func detectFrontmatter(c []byte) []int {
|
|
if matches := yamlPattern.FindAllIndex(c, 2); len(matches) > 1 {
|
|
return []int{matches[0][0], matches[1][1]}
|
|
}
|
|
return []int{-1, -1}
|
|
}
|
|
|
|
// Expands tilde and all environment variables from the given path.
|
|
func ExpandPath(path string) string {
|
|
s, err := homedir.Expand(path)
|
|
if err == nil {
|
|
return os.ExpandEnv(s)
|
|
}
|
|
return os.ExpandEnv(path)
|
|
}
|