Add regenerated docs.json

This commit is contained in:
Ryan Watters 2017-06-20 15:31:41 -05:00 committed by Anthony Fok
parent b7f8d05731
commit 0671aed5b6

View File

@ -1,63 +1,74 @@
{
"media": {
"types": [{
"types": [
{
"Type": "application/javascript",
"String": "application/javascript+js",
"MainType": "application",
"SubType": "javascript",
"Suffix": "js"
}, {
},
{
"Type": "application/json",
"String": "application/json+json",
"MainType": "application",
"SubType": "json",
"Suffix": "json"
}, {
},
{
"Type": "application/rss",
"String": "application/rss+xml",
"MainType": "application",
"SubType": "rss",
"Suffix": "xml"
}, {
},
{
"Type": "application/xml",
"String": "application/xml+xml",
"MainType": "application",
"SubType": "xml",
"Suffix": "xml"
}, {
},
{
"Type": "text/calendar",
"String": "text/calendar+ics",
"MainType": "text",
"SubType": "calendar",
"Suffix": "ics"
}, {
},
{
"Type": "text/css",
"String": "text/css+css",
"MainType": "text",
"SubType": "css",
"Suffix": "css"
}, {
},
{
"Type": "text/csv",
"String": "text/csv+csv",
"MainType": "text",
"SubType": "csv",
"Suffix": "csv"
}, {
},
{
"Type": "text/html",
"String": "text/html+html",
"MainType": "text",
"SubType": "html",
"Suffix": "html"
}, {
},
{
"Type": "text/plain",
"String": "text/plain+txt",
"MainType": "text",
"SubType": "plain",
"Suffix": "txt"
}]
}
]
},
"output": {
"formats": [{
"formats": [
{
"MediaType": "text/html+html",
"Name": "AMP",
"Path": "amp",
@ -68,7 +79,8 @@
"IsHTML": true,
"NoUgly": false,
"NotAlternative": false
}, {
},
{
"MediaType": "text/css+css",
"Name": "CSS",
"Path": "",
@ -79,7 +91,8 @@
"IsHTML": false,
"NoUgly": false,
"NotAlternative": true
}, {
},
{
"MediaType": "text/csv+csv",
"Name": "CSV",
"Path": "",
@ -90,7 +103,8 @@
"IsHTML": false,
"NoUgly": false,
"NotAlternative": false
}, {
},
{
"MediaType": "text/calendar+ics",
"Name": "Calendar",
"Path": "",
@ -101,7 +115,8 @@
"IsHTML": false,
"NoUgly": false,
"NotAlternative": false
}, {
},
{
"MediaType": "text/html+html",
"Name": "HTML",
"Path": "",
@ -112,7 +127,8 @@
"IsHTML": true,
"NoUgly": false,
"NotAlternative": false
}, {
},
{
"MediaType": "application/json+json",
"Name": "JSON",
"Path": "",
@ -123,7 +139,8 @@
"IsHTML": false,
"NoUgly": false,
"NotAlternative": false
}, {
},
{
"MediaType": "application/rss+xml",
"Name": "RSS",
"Path": "",
@ -134,8 +151,10 @@
"IsHTML": false,
"NoUgly": true,
"NotAlternative": false
}],
"layouts": [{
}
],
"layouts": [
{
"Example": "AMP home, with theme \"demoTheme\".",
"OutputFormat": "AMP",
"Suffix": "html",
@ -149,7 +168,8 @@
"demoTheme/layouts/_default/list.amp.html",
"demoTheme/layouts/_default/list.html"
]
}, {
},
{
"Example": "JSON home, no theme.",
"OutputFormat": "JSON",
"Suffix": "json",
@ -159,7 +179,8 @@
"layouts/_default/list.json.json",
"layouts/_default/list.json"
]
}, {
},
{
"Example": "CSV regular, \"layout: demolayout\" in front matter.",
"OutputFormat": "CSV",
"Suffix": "csv",
@ -167,7 +188,8 @@
"layouts/_default/demolayout.csv.csv",
"layouts/_default/demolayout.csv"
]
}, {
},
{
"Example": "JSON regular, \"type: demotype\" in front matter.",
"OutputFormat": "JSON",
"Suffix": "json",
@ -177,7 +199,8 @@
"layouts/_default/single.json.json",
"layouts/_default/single.json"
]
}, {
},
{
"Example": "HTML regular.",
"OutputFormat": "HTML",
"Suffix": "html",
@ -185,7 +208,8 @@
"layouts/_default/single.html.html",
"layouts/_default/single.html"
]
}, {
},
{
"Example": "AMP regular.",
"OutputFormat": "AMP",
"Suffix": "html",
@ -193,7 +217,8 @@
"layouts/_default/single.amp.html",
"layouts/_default/single.html"
]
}, {
},
{
"Example": "Calendar blog section.",
"OutputFormat": "Calendar",
"Suffix": "ics",
@ -207,7 +232,8 @@
"layouts/_default/list.calendar.ics",
"layouts/_default/list.ics"
]
}, {
},
{
"Example": "Calendar taxonomy list.",
"OutputFormat": "Calendar",
"Suffix": "ics",
@ -219,7 +245,8 @@
"layouts/_default/list.calendar.ics",
"layouts/_default/list.ics"
]
}, {
},
{
"Example": "Calendar taxonomy term.",
"OutputFormat": "Calendar",
"Suffix": "ics",
@ -229,7 +256,8 @@
"layouts/_default/terms.calendar.ics",
"layouts/_default/terms.ics"
]
}]
}
]
},
"tpl": {
"funcs": {
@ -583,6 +611,21 @@
]
]
},
"Uniq": {
"Description": "Uniq takes in a slice or array and returns a slice with subsequent\nduplicate elements removed.",
"Args": [
"l"
],
"Aliases": [
"uniq"
],
"Examples": [
[
"{{ slice 1 2 3 2 | uniq }}",
"[1 2 3]"
]
]
},
"Where": {
"Description": "Where returns a filtered subset of a given data type.",
"Args": [