Index: plugins/linebreaks.inc
===================================================================
RCS file: plugins/linebreaks.inc
diff -N plugins/linebreaks.inc
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ plugins/linebreaks.inc 22 Oct 2009 22:49:34 -0000
@@ -0,0 +1,22 @@
+ t('Force linebreaks'),
+ 'vendor url' => 'http://drupal.org/project/wysiwyg',
+ # 'icon file' => 'break.gif',
+ 'icon title' => t('Converts all p and br tags to linebreaks'),
+ 'settings' => array(),
+ );
+ return $plugins;
+}
+
Index: plugins/linebreaks.js
===================================================================
RCS file: plugins/linebreaks.js
diff -N plugins/linebreaks.js
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ plugins/linebreaks.js 22 Oct 2009 22:49:34 -0000
@@ -0,0 +1,117 @@
+// $Id$
+
+// Adopted from Wordpress 2.8.1-beta editor.js.
+
+Drupal.wysiwyg.plugins.linebreaks = {
+ invoke: function(data, settings, instanceId) {
+ alert('This button does nothing, it belongs to the linebreaks plugin.');
+ },
+ attach: function(content, settings, instanceId) {
+ content = this.wpautop(content);
+ return content;
+ },
+
+ detach: function(content, settings, instanceId) {
+ content = this.pre_wpautop(content);
+ return content;
+ },
+
+ pre_wpautop : function(content) {
+ var blocklist1, blocklist2;
+
+ // Protect pre|script tags
+ content = content.replace(/<(pre|script)[^>]*>[\s\S]+?<\/\1>/g, function(a) {
+ a = a.replace(/
[\r\n]*/g, '');
+ return a.replace(/<\/?p( [^>]*)?>[\r\n]*/g, '');
+ });
+
+ // Pretty it up for the source editor
+ blocklist1 = 'blockquote|ul|ol|li|table|thead|tbody|tr|th|td|div|h[1-6]|p';
+ content = content.replace(new RegExp('\\s*('+blocklist1+')>\\s*', 'mg'), '$1>\n');
+ content = content.replace(new RegExp('\\s*<(('+blocklist1+')[^>]*)>', 'mg'), '\n<$1>');
+
+ // Mark
if it has any attributes.
+ content = content.replace(new RegExp('(]+>.*?)
', 'mg'), '$1');
+
+ // Sepatate containing
+ content = content.replace(new RegExp('
]*)>\\s*
', 'mgi'), '
\n\n');
+
+ // Remove
and
+ content = content.replace(new RegExp('\\s*
', 'mgi'), '');
+ content = content.replace(new RegExp('\\s*
\\s*', 'mgi'), '\n\n');
+ content = content.replace(new RegExp('\\n\\s*\\n', 'mgi'), '\n\n');
+ content = content.replace(new RegExp('\\s*
\\s*', 'gi'), '\n');
+
+ // Fix some block element newline issues
+ content = content.replace(new RegExp('\\s*
\\s*', 'mg'), '
\n');
+ content = content.replace(new RegExp('\\s*\\[caption([^\\[]+)\\[/caption\\]\\s*', 'gi'), '\n\n[caption$1[/caption]\n\n');
+ content = content.replace(new RegExp('caption\\]\\n\\n+\\[caption', 'g'), 'caption]\n\n[caption');
+
+ blocklist2 = 'blockquote|ul|ol|li|table|thead|tr|th|td|h[1-6]|pre';
+ content = content.replace(new RegExp('\\s*<(('+blocklist2+') ?[^>]*)\\s*>', 'mg'), '\n<$1>');
+ content = content.replace(new RegExp('\\s*('+blocklist2+')>\\s*', 'mg'), '$1>\n');
+ content = content.replace(new RegExp('
]*)>', 'g'), '\t');
+
+ if ( content.indexOf('