diff --git a/aio/transforms/angular.io-package/processors/convertToJson.js b/aio/transforms/angular.io-package/processors/convertToJson.js index 66f95c0fa8..270f0def7d 100644 --- a/aio/transforms/angular.io-package/processors/convertToJson.js +++ b/aio/transforms/angular.io-package/processors/convertToJson.js @@ -10,7 +10,7 @@ module.exports = function convertToJsonProcessor() { if (docTypes.indexOf(doc.docType) !== -1) { const output = { title: doc.title || doc.name, - content: doc.renderedContent + contents: doc.renderedContent }; doc.renderedContent = JSON.stringify(output, null, 2); }