2017-04-05 10:18:53 -04:00
|
|
|
// Copyright 2017-present The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// Package docshelper provides some helpers for the Hugo documentation, and
|
|
|
|
// is of limited interest for the general Hugo user.
|
|
|
|
package docshelper
|
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
type (
|
|
|
|
DocProviderFunc = func() DocProvider
|
2022-03-17 17:03:27 -04:00
|
|
|
DocProvider map[string]map[string]any
|
2017-04-05 10:18:53 -04:00
|
|
|
)
|
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
var docProviderFuncs []DocProviderFunc
|
2017-04-05 10:18:53 -04:00
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
func AddDocProviderFunc(fn DocProviderFunc) {
|
|
|
|
docProviderFuncs = append(docProviderFuncs, fn)
|
2017-04-05 10:18:53 -04:00
|
|
|
}
|
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
func GetDocProvider() DocProvider {
|
|
|
|
provider := make(DocProvider)
|
|
|
|
|
|
|
|
for _, fn := range docProviderFuncs {
|
|
|
|
p := fn()
|
|
|
|
for k, v := range p {
|
|
|
|
if prev, found := provider[k]; !found {
|
|
|
|
provider[k] = v
|
|
|
|
} else {
|
|
|
|
merge(prev, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-05 10:18:53 -04:00
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
return provider
|
2017-04-05 10:18:53 -04:00
|
|
|
}
|
2020-02-29 04:44:05 -05:00
|
|
|
|
2020-03-20 11:34:53 -04:00
|
|
|
// Shallow merge
|
2022-03-17 17:03:27 -04:00
|
|
|
func merge(dst, src map[string]any) {
|
2020-03-20 11:34:53 -04:00
|
|
|
for k, v := range src {
|
|
|
|
dst[k] = v
|
2020-02-29 04:44:05 -05:00
|
|
|
}
|
|
|
|
}
|