-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bindgen): Generate docsify documentation
Enable on GitHub Pages, etc.
- Loading branch information
Showing
5 changed files
with
85 additions
and
34 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
.DS_Store | ||
test | ||
cypress | ||
dist/index.html | ||
dist/demo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/demo/logo.svg" /> | ||
<link rel="stylesheet" href="/demo/style.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title><bindgenPackageName></title> | ||
</head> | ||
<body> | ||
<div id="app"> | ||
<a href="https://wasm.itk.org/" target="_blank"> | ||
<img src="/demo/logo.svg" class="logo vanilla" alt="ITK Wasm logo" /> | ||
</a> | ||
<h1><bindgenPackageName></h1> | ||
package | ||
<div class="card"> | ||
<h2>functions</h2> | ||
<ul id="pipeline-functions-list"> | ||
|
||
</ul> | ||
</div> | ||
<p class="read-the-docs"> | ||
Click on the ITK Wasm logo to learn more | ||
</p> | ||
</div> | ||
|
||
<script type="module" src="/demo/app.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/demo/logo.svg" /> | ||
<link rel="stylesheet" href="/demo/style.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title><bindgenPackageName></title> | ||
</head> | ||
<body> | ||
<div id="app"> | ||
<a href="https://wasm.itk.org/" target="_blank"> | ||
<img src="/demo/logo.svg" class="logo vanilla" alt="ITK Wasm logo" /> | ||
</a> | ||
<h1><bindgenPackageName></h1> | ||
package | ||
<div class="card"> | ||
<h2>functions</h2> | ||
<ul id="pipeline-functions-list"> | ||
|
||
</ul> | ||
</div> | ||
<p class="read-the-docs"> | ||
Click on the ITK Wasm logo to learn more | ||
</p> | ||
</div> | ||
|
||
<script type="module" src="/demo/app.js"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title><bindgenPackageName></title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="<bindgenPackageDescription>"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"> | ||
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> | ||
</head> | ||
<body> | ||
<div id="app">Loading...</div> | ||
<script> | ||
window.$docsify = { | ||
logo: 'dist/demo/logo.svg', | ||
name: '<bindgenPackageName>', | ||
repo: '' | ||
} | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters