Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-07-13 12:01:38 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-07-13 12:01:38 +0300
commit25e3da3343b5cd4bbcd11fa76b382fb089971840 (patch)
tree6e823fc06542f790f364a78225a46a9adc073d40 /docs/data/docs.json
parent9df98ec49ca9fa326125ccfee626b6e46c6ab14b (diff)
docs: Regenerate docs helper
Diffstat (limited to 'docs/data/docs.json')
-rw-r--r--docs/data/docs.json90
1 files changed, 89 insertions, 1 deletions
diff --git a/docs/data/docs.json b/docs/data/docs.json
index 2a2a0bf52..440ba0fd4 100644
--- a/docs/data/docs.json
+++ b/docs/data/docs.json
@@ -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": {
@@ -1573,6 +1586,16 @@
]
},
{
+ "type": "application/typescript",
+ "string": "application/typescript",
+ "mainType": "application",
+ "subType": "typescript",
+ "delimiter": ".",
+ "suffixes": [
+ "ts"
+ ]
+ },
+ {
"type": "application/xml",
"string": "application/xml",
"mainType": "application",
@@ -1665,6 +1688,16 @@
]
},
{
+ "type": "text/jsx",
+ "string": "text/jsx",
+ "mainType": "text",
+ "subType": "jsx",
+ "delimiter": ".",
+ "suffixes": [
+ "jsx"
+ ]
+ },
+ {
"type": "text/plain",
"string": "text/plain",
"mainType": "text",
@@ -1675,6 +1708,16 @@
]
},
{
+ "type": "text/tsx",
+ "string": "text/tsx",
+ "mainType": "text",
+ "subType": "tsx",
+ "delimiter": ".",
+ "suffixes": [
+ "tsx"
+ ]
+ },
+ {
"type": "text/x-sass",
"string": "text/x-sass",
"mainType": "text",
@@ -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.",
@@ -3505,6 +3563,14 @@
]
}
},
+ "js": {
+ "Build": {
+ "Description": "",
+ "Args": null,
+ "Aliases": null,
+ "Examples": null
+ }
+ },
"lang": {
"Merge": {
"Description": "",
@@ -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.",
@@ -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": [
@@ -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"
],