module.exports = function convertToJsonProcessor(log, createDocMessage) { return { $runAfter: ['checkUnbalancedBackTicks'], $runBefore: ['writeFilesProcessor'], docTypes: [], $process: function(docs) { const docTypes = this.docTypes; docs.forEach((doc) => { if (docTypes.indexOf(doc.docType) !== -1) { let title = doc.title || doc.name; let contents = doc.renderedContent || ''; // If there is no title then try to extract it from the first h1 in the renderedContent if (title === undefined) { const match = /