Skip to content

Commit

Permalink
docs: Regenerate data helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Jul 24, 2019
1 parent 461b0e0 commit 23adc0c
Showing 1 changed file with 47 additions and 7 deletions.
54 changes: 47 additions & 7 deletions docs/data/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,13 @@
"pyx"
]
},
{
"Name": "D",
"Aliases": [
"d",
"di"
]
},
{
"Name": "DTD",
"Aliases": [
Expand Down Expand Up @@ -500,6 +507,12 @@
"groovy"
]
},
{
"Name": "HCL",
"Aliases": [
"hcl"
]
},
{
"Name": "HTML",
"Aliases": [
Expand Down Expand Up @@ -578,13 +591,6 @@
"json"
]
},
{
"Name": "JSX",
"Aliases": [
"jsx",
"react"
]
},
{
"Name": "Java",
"Aliases": [
Expand Down Expand Up @@ -1298,6 +1304,13 @@
"rst"
]
},
{
"Name": "react",
"Aliases": [
"jsx",
"react"
]
},
{
"Name": "reg",
"Aliases": [
Expand All @@ -1319,6 +1332,13 @@
"v",
"verilog"
]
},
{
"Name": "vue",
"Aliases": [
"vue",
"vuejs"
]
}
]
},
Expand Down Expand Up @@ -2558,6 +2578,26 @@
],
"Examples": []
},
"Merge": {
"Description": "Merge creates a copy of dst and merges src into it.\nCurrently only maps supported. Key handling is case insensitive.",
"Args": [
"src",
"dst"
],
"Aliases": [
"merge"
],
"Examples": [
[
"{{ dict \"title\" \"Hugo Rocks!\" | collections.Merge (dict \"title\" \"Default Title\" \"description\" \"Yes, Hugo Rocks!\") | sort }}",
"[Yes, Hugo Rocks! Hugo Rocks!]"
],
[
"{{ merge (dict \"title\" \"Default Title\" \"description\" \"Yes, Hugo Rocks!\") (dict \"title\" \"Hugo Rocks!\") | sort }}",
"[Yes, Hugo Rocks! Hugo Rocks!]"
]
]
},
"NewScratch": {
"Description": "NewScratch creates a new Scratch which can be used to store values in a\nthread safe way.",
"Args": null,
Expand Down

0 comments on commit 23adc0c

Please sign in to comment.