Skip to content

Instantly share code, notes, and snippets.

View ahmdsabbir's full-sized avatar
💭
Limited availability due to internal commitments. Will respond ASAP.

Sabbir Ahmed ahmdsabbir

💭
Limited availability due to internal commitments. Will respond ASAP.
  • Web Properties Ltd.
  • Narayanganj, Bangladesh
  • X @ahmdsabbir
View GitHub Profile
@ediamin
ediamin / wpautop.js
Created February 27, 2017 09:49
JavaScript version of WordPress wpautop function
// source: https://github.com/andymantell/node-wpautop
function _autop_newline_preservation_helper (matches) {
return matches[0].replace( "\n", "<WPPreserveNewline />" );
},
function wpautop(pee, br) {
if(typeof(br) === 'undefined') {
br = true;
}