md2html setup & first doc page
This commit is contained in:
13
website/docs/src/build/build.js
Normal file
13
website/docs/src/build/build.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
*
|
||||
* impress.js website - build.js
|
||||
*
|
||||
* Developed 2023 by Janis Hutz
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
We will convert certain MD files to html and include them in the documentation. This mostly includes the plugin documentation.
|
||||
If there is no MD file in the directory, there will be no documentation. The script will also automatically build the nav menu
|
||||
and copy all the necessary files to the correct places.
|
||||
*/
|
||||
17
website/docs/src/build/template.html
Normal file
17
website/docs/src/build/template.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Docs - impress.js</title>
|
||||
<!--I am using jquery for button animations.-->
|
||||
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<div id="nav"></div>
|
||||
<div id="docPage">
|
||||
<div class="docTitle"></div>
|
||||
</div>
|
||||
<div id="footer"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user