working website build system

This commit is contained in:
janis
2023-01-24 17:55:37 +01:00
parent 4fb1ff42c1
commit c791349aa6
5 changed files with 49 additions and 20 deletions

View File

@@ -19,7 +19,7 @@
<div id="doc-container">
<h1>Extras Plugin</h1>
<p>The Extras plugin will initialize the optional addon plugins from
<a href="../../../extras/">extras/</a> directory, if they were loaded.</p>
<a href="https://github.com/impress/impress.js/src/plugins/extras/">extras/</a> directory, if they were loaded.</p>
<p>Generally, for an extras plugin to have been loaded, 2 things must have happened:</p>
<ol>
<li>The extras plugins must be present in extras/ directory, for example after

View File

@@ -22,7 +22,7 @@
a specific slide number.</p>
<p>Element attribut title is used for select option content if available, it uses element id if no title is provided.</p>
<p>The navigation controls are visible if the toolbar plugin is enabled. To add the toolbar to your
presentations, <a href="../toolbar/README.md">see toolbar plugin README</a>.</p>
presentations, <a href="/docs/plugins/toolbar">see toolbar plugin README</a>.</p>
<h2>Author</h2>
<p>Henrik Ingo (@henrikingo), 2016</p>
</div>

View File

@@ -99,7 +99,7 @@ cannot or don't want to add the explicit 0 values where needed, your last resort
remove the <code>rel.js</code> plugin completely. You can either:</p>
<ul>
<li>
<p>Remove <code>rel.js</code> from <a href="../../../build.js">/build.js</a> and recompile <code>impress.js</code> with: <code>npm build</code></p>
<p>Remove <code>rel.js</code> from <a href="https://github.com/impress/impress.js/src/plugins/build.js">/build.js</a> and recompile <code>impress.js</code> with: <code>npm build</code></p>
</li>
<li>
<p>Just open [/js/impress.js] in an editor and delete the <code>rel.js</code> code.</p>

View File

@@ -44,7 +44,7 @@ the toolbar from sight, and only make it visible when mouse is moved.</p>
}
</code></pre>
<p>If you're writing a plugin and would like to add a widget to the toolbar, see
<a href="toolbar.js">the top of the source file for further instructions</a>.</p>
<a href="https://github.com/impress/impress.jstoolbar.js">the top of the source file for further instructions</a>.</p>
<h2>Author</h2>
<p>Henrik Ingo (@henrikingo), 2016</p>
</div>

View File

@@ -29,8 +29,7 @@ for ( let item in plugins ) {
parseJS( path.join( pluginsPath + '/' + plugins[item] ) );
} else {
let html = md2html.render( '' + data );
findLinks( html, path.join( pluginsPath + '/' + plugins[item] + '/README.md' ) );
storeHTML( html, plugins[item] );
storeHTML( findLinks( html, path.join( pluginsPath + '/' + plugins[item] ) ), plugins[item] );
};
} );
}
@@ -44,33 +43,63 @@ function parseJS ( filepath ) {
}
function findLinks ( html, path ) {
let returnHTML = html;
for ( let letter in html ) {
if ( html[letter] === '<' ) {
if ( html.slice( parseInt( letter ), parseInt( letter ) + 9 ) === '<a href="' ) {
let i = 9;
while ( html.slice( parseInt( letter ) + i, parseInt( letter ) + i + 1 ) !== '"' ) {
i += 1
}
checkLinks( html.slice( parseInt( letter ) + 9, parseInt( letter ) + i ), path );
i += 1;
};
returnHTML = html.slice( 0, parseInt( letter ) ) + checkLinks( html.slice( parseInt( letter ) + 9, parseInt( letter ) + i ), path ) + html.slice( parseInt( letter ) + i + 2, parseInt( html.length ) );
};
};
};
return returnHTML;
};
function checkLinks ( link, path ) {
function checkLinks ( link, fpath ) {
console.log( link );
let filepath = fpath;
let pos = 0;
if ( link.slice( parseInt( link.length ) - 9, parseInt( link.length ) ) === 'README.md' ) {
console.log( 'linking to readme' );
} else {
if ( link.slice( 0, 2 ) === '..' ) {
while ( link.slice( pos, pos + 2 ) === '.' || link.slice( pos, pos + 2 ) === '/' ) {
while ( link.slice( parseInt( link.length ) - pos - 11, parseInt( link.length ) - pos - 10 ) !== '/' ) {
pos += 1;
};
return '<a href="/docs/plugins/' + link.slice( parseInt( link.length ) - pos - 10, parseInt( link.length ) - 10 ) + '">';
} else if ( link.slice( 0, 2 ) === '..' ) {
// here we map the relative path to an absolute path that can be used with the GitHub repo.
while ( link.slice( pos, pos + 3 ) === '../' ) {
pos += 3;
let pathPos = 1;
while ( filepath.slice( parseInt( filepath.length ) - pathPos, parseInt( filepath.length ) - pathPos + 1 ) !== '/' ) {
pathPos += 1;
};
filepath = filepath.slice( 0, parseInt( filepath.length ) - pathPos + 1 );
};
// Here we find the impress.js root in the filepath to remove it and finish the link generation
let fsPos = 0;
while ( filepath.slice( parseInt( filepath.length ) - fsPos - 10, parseInt( filepath.length ) - fsPos ) !== 'impress.js' ) {
fsPos += 1;
};
let fpSlice = filepath.slice( parseInt( filepath.length ) - fsPos, parseInt( filepath.length ) );
let linkSlice = link.slice( pos, link.length );
// now let's assemble a link and add it back into the html
return '<a href="https://github.com/impress/impress.js' + fpSlice + linkSlice + '">';
} else if ( link.slice( 0, 1 ) !== '.' && link.slice( 0, 1 ) !== '/' ) {
console.log( 'relative path in same folder' );
let fsPos = 0;
while ( filepath.slice( parseInt( filepath.length ) - fsPos - 10, parseInt( filepath.length ) - fsPos ) !== 'impress.js' ) {
fsPos += 1;
};
let fpSlice = filepath.slice( parseInt( filepath.length ) - fsPos, parseInt( filepath.length ) );
return '<a href="https://github.com/impress/impress.js' + link + '">';
} else if ( link.slice( 0, 7 ) === 'http://' || link.slice( 0, 8 ) === 'https://' ) {
console.log( 'hi' );
return '<a href="' + link + '">';
} else {
throw Error( 'Invalid link found! Link is: "' + link + '" in file: ' + path );
}
throw Error( 'Invalid link found! Link is: "' + link + '" in file: ' + filepath + '/README.md' );
};
};