standardize way of declaring functions
authorHakim El Hattab <hakim.elhattab@gmail.com>
Fri, 23 Aug 2013 21:51:20 +0000 (17:51 -0400)
committerHakim El Hattab <hakim.elhattab@gmail.com>
Fri, 23 Aug 2013 21:51:20 +0000 (17:51 -0400)
plugin/markdown/markdown.js

index 68b534b7d9328cf056fb79943e33ef470c3b405e..e3fe0f8be99d2f7f439dc158087d3ee70c44c497 100755 (executable)
@@ -14,7 +14,7 @@
                });
        }
 
-       var stripLeadingWhitespace = function( section ) {
+       function stripLeadingWhitespace( section ) {
 
                var template = section.querySelector( 'script' );
 
@@ -35,7 +35,7 @@
 
        };
 
-       var twrap = function( el ) {
+       function twrap( el ) {
 
                var content = el.content || el;
 
@@ -47,7 +47,7 @@
 
        };
 
-       var getForwardedAttributes = function( section ) {
+       function getForwardedAttributes( section ) {
 
                var attributes = section.attributes;
                var result = [];
@@ -71,7 +71,7 @@
 
        };
 
-       var slidifyMarkdown = function( markdown, separator, vertical, notes, attributes ) {
+       function slidifyMarkdown( markdown, separator, vertical, notes, attributes ) {
 
                separator = separator || '^\n---\n$';
                notes = notes || 'note:';
                return markdownSections;
        };
 
-       var queryExternalMarkdown = function() {
+       function queryExternalMarkdown() {
 
                var sections = document.querySelectorAll( '[data-markdown]'),
                        section;
 
        };
 
-       var queryMarkdownSlides = function() {
+       function queryMarkdownSlides() {
 
                var sections = document.querySelectorAll( '[data-markdown]');
 
 
        };
 
-       var makeHtml = function( section ) {
+       function makeHtml( section ) {
 
                var notes = section.querySelector( 'aside.notes' );