aboutsummaryrefslogtreecommitdiff
path: root/plugin/markdown
diff options
context:
space:
mode:
authorVonC <vonc@laposte.net>2013-11-27 22:48:01 +0100
committerVonC <vonc@laposte.net>2013-11-30 23:12:39 +0100
commit8ad633e4f3cdc576601e9b9aa5cd85c1f08e427e (patch)
treef37b05d3c48ab4f69e6c9bf62edc88ddfea119f4 /plugin/markdown
parent3330c2a7648767f0ef8298c152ae4f2dd2c38ba0 (diff)
downloadfosdem-2018-presentation-8ad633e4f3cdc576601e9b9aa5cd85c1f08e427e.tar
fosdem-2018-presentation-8ad633e4f3cdc576601e9b9aa5cd85c1f08e427e.tar.gz
Fix element attributes, except for multi-line.
Diffstat (limited to 'plugin/markdown')
-rwxr-xr-xplugin/markdown/markdown.js38
1 files changed, 21 insertions, 17 deletions
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js
index d606a4b..34458f2 100755
--- a/plugin/markdown/markdown.js
+++ b/plugin/markdown/markdown.js
@@ -29,7 +29,7 @@
var DEFAULT_SLIDE_SEPARATOR = '^\n---\n$',
DEFAULT_NOTES_SEPARATOR = 'note:',
DEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '{\\\.\s*?([^}]+?)}',
- DEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '^.*?<!--\\\sslide-attributes:\\\s(.*?)-->';
+ DEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = 'slide-attributes:\\\s(.*?)$';
/**
@@ -73,7 +73,7 @@
value = attributes[i].value;
// disregard attributes that are used for markdown loading/parsing
- if( /data\-(markdown|separator|vertical|notes|attributes)/gi.test( name ) ) continue;
+ if( /data\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;
if( value ) {
result.push( name + '=' + value );
@@ -282,12 +282,13 @@
var mardownClassesInElementsRegex = new RegExp( separator, 'mg' );
var mardownClassRegex = new RegExp( "([^\"= ]+?)=\"([^\"=]+?)\"", 'mg' );
var nodeValue = node.nodeValue;
+ console.log("=== node.nodeValue='" + nodeValue + "' vs. separator '" + separator + "'");
if( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {
var classes = matches[1];
nodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );
node.nodeValue = nodeValue;
-
+ console.log("=========== classes='" + classes + "'");
while( matchesClass = mardownClassRegex.exec( classes ) ) {
elementTarget.setAttribute( matchesClass[1], matchesClass[2] );
}
@@ -302,15 +303,15 @@
*/
function addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {
- console.log("element='" + element.innerHTML + "', nodeType='" + element.nodeType + "'");
+ console.log("*** element='" + element.innerHTML + "', nodeType='" + element.nodeType + "'");
console.log("previousElement="+previousElement)
console.log("section=****"+section.outerHTML+"****");
- if( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {
+ if ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {
previousParentElement = element;
for( var i = 0; i < element.childNodes.length; i++ ) {
childElement = element.childNodes[i];
- console.log(" Child element='" + childElement.innerHTML + "'");
- if ( i > 0 ) {
+ console.log(" Child element='" + childElement.innerHTML + "', type " + childElement.nodeType);
+ if ( i > 0 && typeof element.childNodes[i-1].setAttribute == 'function' ) {
previousParentElement = element.childNodes[i-1];
}
parentSection = section;
@@ -318,7 +319,10 @@
parentSection = childElement ;
previousParentElement = childElement ;
}
- addAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );
+ if ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {
+ console.log(" CALL addAttributes")
+ addAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );
+ }
}
}
@@ -328,15 +332,15 @@
}
}
// From http://stackoverflow.com/questions/9178174/find-all-text-nodes
- if( element.nodeType == Node.TEXT_NODE && /\S/.test(element.nodeValue) ) {
- addAttributeInElement( element, element.parentNode, separatorElementAttributes );
- }
- if( element.nodeType == Node.ELEMENT_NODE && element.attributes.length > 0 ) {
- for( var j = 0; j < element.attributes.length; j++ ){
- var attr = element.attributes[j];
- addAttributeInElement( attr, element, separatorElementAttributes );
- }
- }
+ //if( element.nodeType == Node.TEXT_NODE && /\S/.test(element.nodeValue) ) {
+ // addAttributeInElement( element, element.parentNode, separatorElementAttributes );
+ //}
+ //if( element.nodeType == Node.ELEMENT_NODE && element.attributes.length > 0 ) {
+ // for( var j = 0; j < element.attributes.length; j++ ){
+ // var attr = element.attributes[j];
+ // addAttributeInElement( attr, element, separatorElementAttributes );
+ // }
+ //}
}