| 
									
										
										
										
											2018-02-23 13:50:47 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-03-10 17:14:58 +00:00
										 |  |  |  * Split the description (of selected docs) into: | 
					
						
							| 
									
										
										
										
											2018-02-23 13:50:47 +00:00
										 |  |  |  * * `shortDescription`: the first paragraph | 
					
						
							|  |  |  |  * * `description`: the rest of the paragraphs | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | module.exports = function splitDescription() { | 
					
						
							|  |  |  |   return { | 
					
						
							| 
									
										
										
										
											2018-09-20 14:28:18 +01:00
										 |  |  |     $runAfter: ['tags-extracted'], | 
					
						
							| 
									
										
										
										
											2018-02-23 13:50:47 +00: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(); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 |