blob: 3d4a3de0588b9762b8202e45cc679f2805dac3f6 [file] [log] [blame]
Paragraph = function(html) {
html = html.replace(/<\s*p[^>]*>/gi, '');
html = html.replace(/<\/\s*p\s*>/gi, '');
html = html.trim();
return html;
};