Evan Dancer
Evan Dancer
Thanks for your help @miguelcobain! I switched out that code to use plain Handlebars as a temporary fix for now.
Sorry @pedrokost for the delay. Here is what I do. I render it offscreen to the body. Then after rendering I grab the html. Probably not the cleanest solution but...
Hi @arnaudlewis, I am using node v6.10.0 and prismic 3.5.6. My code looks like this: ```javascript const query = [ Prismic.Predicates.at('document.type', documentType), Prismic.Predicates.fulltext('document', params.q || ''), ]; return Prismic.api(URL).then((api) =>...
Also another thought... Technically we need to check if all the objects in the array are arrays, not just the first one. We could do something like this to check...