Flamenco
Flamenco
`cancel()` is not returning a promise. ```js this.renderPage = function(rotate) { if ( pdfRender !== null ) { if ( canceling ) return; canceling = true; pdfRender.cancel().catch(function(err) { emitEvent('error', err);...
What service are you using as a provider?
This is issue was fixed in StackEditPro.
fixes https://github.com/getgrav/grav/issues/1840
https://github.com/getgrav/grav-plugin-admin/pull/1385
It should. It just escapes things so they are not treated as markdown. And then puts them back after calling the pre-processor.
@rhukster Any reason why you did not also simply use pages that extended the docs or chapter template in addition to scanning for taxonomy?
The reason for this is that I have 3 or more ways to query a document. They each return the exact same results in a different format. The document is...
This is the pattern I decided upon. 12 lines of source cut 2000 lines of code from my project! ``` function getComponentData() { return new Promise((resolve, reject) => { medusaConnector.newBuilder()...
I think that whether I call getView, getDocument, or getMango, I should be able to request getting a single document or a collection. This is how JPA works, and it...