Skip to content

Instantly share code, notes, and snippets.

View brownsugar's full-sized avatar
🇹🇼

Lay brownsugar

🇹🇼
View GitHub Profile
@brownsugar
brownsugar / HtmlToBBCode.js
Created February 8, 2019 13:41 — forked from soyuka/HtmlToBBCode.js
Html To BBCode javascript function
//Adapted from http://skeena.net/htmltobb/
var htmlToBBCode = function(html) {
html = html.replace(/<pre(.*?)>(.*?)<\/pre>/gmi, "[code]$2[/code]");
html = html.replace(/<h[1-7](.*?)>(.*?)<\/h[1-7]>/, "\n[h]$2[/h]\n");
//paragraph handling:
//- if a paragraph opens on the same line as another one closes, insert an extra blank line