Visual editor - adding metadata node if missing
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 6 May 2013 21:09:11 +0000 (23:09 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 6 May 2013 21:09:11 +0000 (23:09 +0200)
modules/visualEditor.transformations.js

index d45109f..8a32831 100644 (file)
@@ -91,7 +91,16 @@ if(typeof module !== 'undefined' && module.exports) {
             });
             meta.append('\n');
             
             });
             meta.append('\n');
             
-            toret.find('metadata').replaceWith(meta);
+            var metadata = toret.find('metadata');
+            if(metadata.length === 0) {
+                var section = toret.find('section');
+                section = section.length ? $(section[0]) : null;
+                if(section) {
+                    section.prepend(meta)
+                }
+            } else {
+                metadata.replaceWith(meta);
+            }
             
             
             return vkbeautify.xml(toret.html());
             
             
             return vkbeautify.xml(toret.html());