/**
* @dgRenderFilterfirstParagraph
* @description Extract the first paragraph from the value, breaking on the first double newline
*/module.exports = {
name: 'firstParagraph',
process(str) {
if (!str) return str;
str = str
.split("\n\n")[0];
return str;
}
};