Rebased on dev, and following contribution guideline.
This commit is contained in:
		| @@ -130,7 +130,7 @@ | |||||||
|  |  | ||||||
| 		var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ), | 		var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ), | ||||||
| 			horizontalSeparatorRegex = new RegExp( options.separator ), | 			horizontalSeparatorRegex = new RegExp( options.separator ), | ||||||
| 			slideAttributesSeparatorRegex = new RegExp( options.slideAttributesSeparator, 'm'); | 			slideAttributesSeparatorRegex = new RegExp( options.slideAttributesSeparator, 'm' ); | ||||||
|  |  | ||||||
| 		var matches, | 		var matches, | ||||||
| 			lastIndex = 0, | 			lastIndex = 0, | ||||||
| @@ -181,22 +181,22 @@ | |||||||
| 				// The 'data-xxx' attributes of the first child must be set on the wrapping parent section to be effective | 				// The 'data-xxx' attributes of the first child must be set on the wrapping parent section to be effective | ||||||
| 				// Mainly for data-transition (otherwise, it is ignored for the first vertical slide) | 				// Mainly for data-transition (otherwise, it is ignored for the first vertical slide) | ||||||
| 				firstChild = sectionStack[i][0]; | 				firstChild = sectionStack[i][0]; | ||||||
| 				matchAttributes = slideAttributesSeparatorRegex.exec(firstChild); | 				matchAttributes = slideAttributesSeparatorRegex.exec( firstChild ); | ||||||
| 				slideAttributes = matchAttributes ? matchAttributes[1] : ""; | 				slideAttributes = matchAttributes ? matchAttributes[1] : ""; | ||||||
| 				dataAttributes = ""; | 				dataAttributes = ""; | ||||||
| 				if( slideAttributes != "") { | 				if( slideAttributes != "" ) { | ||||||
| 					// console.log('all attr=' + slideAttributes ); | 					// console.log('all attr=' + slideAttributes ); | ||||||
| 					// http://stackoverflow.com/questions/18025762/javascript-regex-replace-all-word-characters-except-word-characters-between-ch | 					// http://stackoverflow.com/questions/18025762/javascript-regex-replace-all-word-characters-except-word-characters-between-ch | ||||||
| 					// Keep only data-attributes for the parent slide section. | 					// Keep only data-attributes for the parent slide section. | ||||||
| 					dataAttributes = slideAttributes.replace(/(data-\S+=\"[^\"]+?\")|\w|[\"=]/g, function(a, b) { return b || ''; }); | 					dataAttributes = slideAttributes.replace( /(data-\S+=\"[^\"]+?\")|\w|[\"=]/g, function(a, b) { return b || ''; }); | ||||||
| 					// console.log('new attr=' + dataAttributes ); | 					// console.log('new attr=' + dataAttributes ); | ||||||
| 				} | 				} | ||||||
| 				markdownSections += '<section '+ options.attributes + ' ' + dataAttributes + '>'; | 				markdownSections += '<section '+ options.attributes + ' ' + dataAttributes + '>'; | ||||||
|  |  | ||||||
| 				sectionStack[i].forEach( function( child ) { | 				sectionStack[i].forEach( function( child ) { | ||||||
| 					matchAttributes = slideAttributesSeparatorRegex.exec(child); | 					matchAttributes = slideAttributesSeparatorRegex.exec( child ); | ||||||
| 					slideAttributes = matchAttributes ? matchAttributes[1] : ""; | 					slideAttributes = matchAttributes ? matchAttributes[1] : ""; | ||||||
| 					child = matchAttributes ? child.replace(slideAttributesSeparatorRegex,"") : child | 					child = matchAttributes ? child.replace( slideAttributesSeparatorRegex,"" ) : child | ||||||
| 					// console.log('slide attributes ' + options.slideAttributesSeparator + ' => ' + slideAttributes) | 					// console.log('slide attributes ' + options.slideAttributesSeparator + ' => ' + slideAttributes) | ||||||
| 					markdownSections += '<section ' + slideAttributes + ' data-markdown>' +  createMarkdownSlide( child, options ) + '</section>'; | 					markdownSections += '<section ' + slideAttributes + ' data-markdown>' +  createMarkdownSlide( child, options ) + '</section>'; | ||||||
| 				} ); | 				} ); | ||||||
| @@ -204,9 +204,9 @@ | |||||||
| 				markdownSections += '</section>'; | 				markdownSections += '</section>'; | ||||||
| 			} | 			} | ||||||
| 			else { | 			else { | ||||||
| 				matchAttributes = slideAttributesSeparatorRegex.exec(sectionStack[i]); | 				matchAttributes = slideAttributesSeparatorRegex.exec( sectionStack[i] ); | ||||||
| 				slideAttributes = matchAttributes ? matchAttributes[1] : ""; | 				slideAttributes = matchAttributes ? matchAttributes[1] : ""; | ||||||
| 				content = matchAttributes ? sectionStack[i].replace(slideAttributesSeparatorRegex,"") : sectionStack[i] | 				content = matchAttributes ? sectionStack[i].replace( slideAttributesSeparatorRegex,"" ) : sectionStack[i] | ||||||
| 				//console.log('Slide attributes ' + options.slideAttributesSeparator + ' => ' + slideAttributes) | 				//console.log('Slide attributes ' + options.slideAttributesSeparator + ' => ' + slideAttributes) | ||||||
| 				markdownSections += '<section '+ options.attributes + ' ' + slideAttributes +' data-markdown>' + createMarkdownSlide( content, options ) + '</section>'; | 				markdownSections += '<section '+ options.attributes + ' ' + slideAttributes +' data-markdown>' + createMarkdownSlide( content, options ) + '</section>'; | ||||||
| 			} | 			} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user