build html file from jsfiddle files
Project description
Installation
$ [sudo] pip install jsfiddle-build
How it works
.
├── build.html generated
├── demo.html required
├── demo.css optional
├── demo.js optional
├── demo.details optional
.
├── build.html generated
├── fiddle.html required
├── fiddle.css optional
├── fiddle.js optional
├── fiddle.manifest optional
build.html
:
<html> <head> <title>{title}</title> {resources} <style type="text/css"> {css} </style> <script type="text/javascript"> window.onload=function(){ {js} } </script> </head> <body> {html} </body> </html>
Examples
$ find . -name "*.html" ! -name "build.*" | xargs python -m jsfiddle_build
paths with spaces:
OS | speed | command |
---|---|---|
any | slow | find . -name "*.html" ! -name "build.*" -exec python -m jsfiddle_build {} \; |
Linux | fast | find . -name "*.html" ! -name "build.*" -print0 | xargs -d '\n' python -m jsfiddle_build |
macOS | fast | find . -name "*.html" ! -name "build.*" -print0 | xargs -0 python -m jsfiddle_build |
Related
jsfiddle-build.py
- buildbuild.html
from jsfiddle filesjsfiddle-factory.py
- jsfiddles mass productionjsfiddle-generator.py
- jsfiddle files generatorjsfiddle-github.py
- jsfiddle github integration helperjsfiddle-readme-generator.py
- generate jsfiddleREADME.md
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size jsfiddle-build-2020.12.3.tar.gz (2.7 kB) | File type Source | Python version None | Upload date | Hashes View |