Skip to content

Commit

Permalink
docs: Regenerate docs helper
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Jul 13, 2020
1 parent 9df98ec commit 25e3da3
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 1 deletion.
90 changes: 89 additions & 1 deletion docs/data/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -1488,6 +1488,19 @@
"skipHTML": false,
"footnoteAnchorPrefix": "",
"footnoteReturnLinkContents": ""
},
"asciidocExt": {
"backend": "html5",
"docType": "article",
"extensions": [],
"attributes": {},
"noHeaderOrFooter": true,
"safeMode": "unsafe",
"sectionNumbers": false,
"verbose": true,
"trace": false,
"failureLevel": "fatal",
"workingFolderCurrent": false
}
},
"minify": {
Expand Down Expand Up @@ -1572,6 +1585,16 @@
"toml"
]
},
{
"type": "application/typescript",
"string": "application/typescript",
"mainType": "application",
"subType": "typescript",
"delimiter": ".",
"suffixes": [
"ts"
]
},
{
"type": "application/xml",
"string": "application/xml",
Expand Down Expand Up @@ -1664,6 +1687,16 @@
"html"
]
},
{
"type": "text/jsx",
"string": "text/jsx",
"mainType": "text",
"subType": "jsx",
"delimiter": ".",
"suffixes": [
"jsx"
]
},
{
"type": "text/plain",
"string": "text/plain",
Expand All @@ -1674,6 +1707,16 @@
"txt"
]
},
{
"type": "text/tsx",
"string": "text/tsx",
"mainType": "text",
"subType": "tsx",
"delimiter": ".",
"suffixes": [
"tsx"
]
},
{
"type": "text/x-sass",
"string": "text/x-sass",
Expand Down Expand Up @@ -3189,6 +3232,21 @@
"Examples": []
}
},
"debug": {
"Dump": {
"Description": "Dump returns a object dump of val as a string.\nNote that not every value passed to Dump will print so nicely, but\nwe'll improve on that. We recommend using the \"go\" Chroma lexer to format the output\nnicely.\nAlso note that the output from Dump may change from Hugo version to the next,\nso don't depend on a specific output.",
"Args": [
"val"
],
"Aliases": null,
"Examples": [
[
"{{- $m := newScratch -}}\n{{- $m.Set \"Hugo\" \"Rocks!\" -}}\n{{- $m.Values | debug.Dump | safeHTML -}}",
"map[string]interface {}{\n \"Hugo\": \"Rocks!\",\n}"
]
]
}
},
"encoding": {
"Base64Decode": {
"Description": "Base64Decode returns the base64 decoding of the given content.",
Expand Down Expand Up @@ -3505,6 +3563,14 @@
]
}
},
"js": {
"Build": {
"Description": "",
"Args": null,
"Aliases": null,
"Examples": null
}
},
"lang": {
"Merge": {
"Description": "",
Expand Down Expand Up @@ -3735,6 +3801,14 @@
]
}
},
"openapi3": {
"Unmarshal": {
"Description": "",
"Args": null,
"Aliases": null,
"Examples": []
}
},
"os": {
"FileExists": {
"Description": "FileExists checks whether a file exists under the given path.",
Expand Down Expand Up @@ -4229,6 +4303,20 @@
"Aliases": null,
"Examples": null
},
"Count": {
"Description": "Count counts the number of non-overlapping instances of substr in s.\nIf substr is an empty string, Count returns 1 + the number of Unicode code points in s.",
"Args": [
"substr",
"s"
],
"Aliases": null,
"Examples": [
[
"{{\"aabab\" | strings.Count \"a\" }}",
"3"
]
]
},
"CountRunes": {
"Description": "CountRunes returns the number of runes in s, excluding whitepace.",
"Args": [
Expand Down Expand Up @@ -4767,7 +4855,7 @@
]
},
"Unmarshal": {
"Description": "Unmarshal unmarshals the data given, which can be either a string\nor a Resource. Supported formats are JSON, TOML, YAML, and CSV.\nYou can optionally provide an options map as the first argument.",
"Description": "Unmarshal unmarshals the data given, which can be either a string, json.RawMessage\nor a Resource. Supported formats are JSON, TOML, YAML, and CSV.\nYou can optionally provide an options map as the first argument.",
"Args": [
"args"
],
Expand Down
3 changes: 3 additions & 0 deletions tpl/js/js.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ import (

// New returns a new instance of the js-namespaced template functions.
func New(deps *deps.Deps) *Namespace {
if deps.ResourceSpec == nil {
return &Namespace{}
}
return &Namespace{
client: js.New(deps.BaseFs.Assets, deps.ResourceSpec),
}
Expand Down

0 comments on commit 25e3da3

Please sign in to comment.