2018-02-23 08:50:47 -05:00
|
|
|
/**
|
2018-03-10 12:14:58 -05:00
|
|
|
* Split the description (of selected docs) into:
|
2018-02-23 08:50:47 -05:00
|
|
|
* * `shortDescription`: the first paragraph
|
|
|
|
* * `description`: the rest of the paragraphs
|
|
|
|
*/
|
|
|
|
module.exports = function splitDescription() {
|
|
|
|
return {
|
2018-09-20 09:28:18 -04:00
|
|
|
$runAfter: ['tags-extracted'],
|
2018-02-23 08:50:47 -05:00
|
|
|
$runBefore: ['processing-docs'],
|
|
|
|
docTypes: [],
|
|
|
|
$process(docs) {
|
|
|
|
docs.forEach(doc => {
|
|
|
|
if (this.docTypes.indexOf(doc.docType) !== -1 && doc.description !== undefined) {
|
|
|
|
const description = doc.description.trim();
|
|
|
|
const endOfParagraph = description.search(/\n\s*\n/);
|
|
|
|
if (endOfParagraph === -1) {
|
|
|
|
doc.shortDescription = description;
|
|
|
|
doc.description = '';
|
|
|
|
} else {
|
|
|
|
doc.shortDescription = description.substr(0, endOfParagraph).trim();
|
|
|
|
doc.description = description.substr(endOfParagraph).trim();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|