Mercurial > public > sg101
comparison static/js/tiny_mce/plugins/bbcode/editor_plugin_src.js @ 442:6c182ceb7147
Fixing #217; upgrade TinyMCE to 3.4.2 and enable the paste plugin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 May 2011 00:43:49 +0000 |
parents | 88b2b9cb8c1f |
children |
comparison
equal
deleted
inserted
replaced
441:33d0c55e57a9 | 442:6c182ceb7147 |
---|---|
77 rep(/<br \/>/gi,"\n"); | 77 rep(/<br \/>/gi,"\n"); |
78 rep(/<br\/>/gi,"\n"); | 78 rep(/<br\/>/gi,"\n"); |
79 rep(/<br>/gi,"\n"); | 79 rep(/<br>/gi,"\n"); |
80 rep(/<p>/gi,""); | 80 rep(/<p>/gi,""); |
81 rep(/<\/p>/gi,"\n"); | 81 rep(/<\/p>/gi,"\n"); |
82 rep(/ /gi," "); | 82 rep(/ |\u00a0/gi," "); |
83 rep(/"/gi,"\""); | 83 rep(/"/gi,"\""); |
84 rep(/</gi,"<"); | 84 rep(/</gi,"<"); |
85 rep(/>/gi,">"); | 85 rep(/>/gi,">"); |
86 rep(/&/gi,"&"); | 86 rep(/&/gi,"&"); |
87 | 87 |