/
githubmirror
/
hugo
Обзор
Документация
Войти
/
githubmirror
/
hugo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
output/docshelper.go
23 строки
487 B
Joe Mooring
misc: Remove duplicate words in comments
29 май 2026, 18:54
29 май 2026, 18:54
45c00b7
Код
Авторство
О чём код?
package output import ( // "fmt" "github.com/gohugoio/hugo/docshelper" ) // This is just a helper used to create some JSON used in the Hugo docs. func init() { docsProvider := func() docshelper.DocProvider { return docshelper.DocProvider{ "output": map[string]any{ // TODO(bep), maybe revisit this later, but I hope this isn't needed. // "layouts": createLayoutExamples(), "layouts": map[string]any{}, }, } } docshelper.AddDocProviderFunc(docsProvider) }