1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
text = remplace_tag(/\<(span|font|div) style=\"([A-Za-z0-9\:\-\.\;\=\"\s]+)\"\>([^<>]+)<\/(span|font|div)\>/ig,'[$2]$3[/$2]',text);
text = remplace_tag(/\[\/([A-Za-z0-9\:\s\-]+)\;\s([A-Za-z0-9\:\s\-\;]+)\]/ig,'[/$1; /$2]',text);
text = remplace_tag(/\/font-style: italic;/ig,'[/i ]',text);
text = remplace_tag(/\/font-weight: bold;/ig,'[/b ]',text);
text = remplace_tag(/font-weight: bold;/ig,'[b ]',text);
text = remplace_tag(/font-style: italic;/ig,'[i ]',text);
text = remplace_tag(/\/text-decoration: underline;/ig,'[/u ]',text) ;
text = remplace_tag(/text-decoration: underline;/ig,'[u ]',text);
text = remplace_tag(/\/text-decoration: line-through;/ig,'[/s ]',text) ;
text = remplace_tag(/text-decoration: line-through;/ig,'[s ]',text);
text = remplace_tag(/\/text-decoration: underline line-through;/ig,'[/s ][/u ]',text) ;
text = remplace_tag(/text-decoration: underline line-through;/ig,'[u ][s ]',text);
text = remplace_tag(/\[\[/ig,'[',text);
text = remplace_tag(/\]\]/ig,']',text);
text = remplace_tag(/\]\s\[/ig,'][',text); |
Partager