Skip to content

Instantly share code, notes, and snippets.

@georgeportillo
Last active March 29, 2017 17:10
Show Gist options
  • Save georgeportillo/1611b5ce3803a50e0d467acb4cc904ef to your computer and use it in GitHub Desktop.
Save georgeportillo/1611b5ce3803a50e0d467acb4cc904ef to your computer and use it in GitHub Desktop.
// From:
{
"output": [{
"type": "text",
"template": "text",
"text": ""
}, {
"type": "card",
"template": "card",
"title": "Card #1",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #2",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #3",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "text",
"template": "text",
"text": ""
}, {
"type": "text",
"template": "text",
"text": ""
}, {
"type": "card",
"template": "card",
"title": "Card #4",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #5",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #6",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}]
}
// Into:
{
"output": [{
"type": "text",
"template": "text",
"text": ""
},
[{
"type": "card",
"template": "card",
"title": "Card #1",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #2",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #3",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}], {
"type": "text",
"template": "text",
"text": ""
}, {
"type": "text",
"template": "text",
"text": ""
},
[{
"type": "card",
"template": "card",
"title": "Card #4",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #5",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}, {
"type": "card",
"template": "card",
"title": "Card #6",
"image_url": "foo",
"subtitle": "bar",
"buttons": ["baz"]
}]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment