├── .DS_Store ├── README.md ├── assets ├── .DS_Store ├── example-notebook-series-exported.png ├── example-notebook-series-post.png ├── example-notebook-series.png ├── example-notebook.png ├── jekyll-example-post.png └── jekyll-example-site.png ├── development ├── development-02-find-cover-image.nb ├── exporter-development.nb ├── functions-old.m └── test-exportNotebook.nb ├── example-blog ├── .DS_Store ├── .gitignore ├── _config.yml ├── _includes │ ├── figure-col-right.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── icon-github.html │ ├── icon-github.svg │ ├── icon-twitter.html │ └── icon-twitter.svg ├── _layouts │ ├── default.html │ ├── page.html │ └── post.html ├── _posts │ └── .DS_Store ├── _sass │ ├── _base.scss │ ├── _layout.scss │ ├── _posts.scss │ └── _syntax-highlighting.scss ├── about.md ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── main.scss ├── feed.xml └── index.html ├── example-notebooks ├── eg-notebook.nb ├── rule-22-random-init-density.nb ├── rule-22-random-init.nb ├── rule-22-simple-init.nb └── text-only-notebook.nb ├── export-dir.sh ├── export-test ├── .DS_Store ├── .gitignore ├── _config.yml ├── _includes │ ├── figure-col-right.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── icon-github.html │ ├── icon-github.svg │ ├── icon-twitter.html │ └── icon-twitter.svg ├── _layouts │ ├── default.html │ ├── page.html │ └── post.html ├── _posts │ ├── .DS_Store │ ├── 2017-05-23-eg-notebook.md │ ├── 2017-05-23-rule-22-random-init-density.md │ ├── 2017-05-23-rule-22-random-init.md │ ├── 2017-05-23-rule-22-simple-init.md │ └── 2017-05-23-text-only-notebook.md ├── _sass │ ├── _base.scss │ ├── _layout.scss │ ├── _posts.scss │ └── _syntax-highlighting.scss ├── about.md ├── assets │ └── 2017 │ │ └── 05 │ │ └── 23 │ │ ├── eg-notebook-500px │ │ ├── eg-notebook_4.gif │ │ ├── eg-notebook_5.gif │ │ ├── eg-notebook_7.gif │ │ └── eg-notebook_8.gif │ │ ├── rule-22-random-init-500px │ │ ├── rule-22-random-init_3.gif │ │ └── rule-22-random-init_4.gif │ │ ├── rule-22-random-init-density-500px │ │ ├── rule-22-random-init-density_3.gif │ │ └── rule-22-random-init-density_4.gif │ │ └── rule-22-simple-init-500px │ │ ├── rule-22-simple-init_3.gif │ │ └── rule-22-simple-init_4.gif ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── main.scss ├── feed.xml └── index.html ├── export_nb_to_static_site.wolframscript ├── functions.m ├── functions.nb ├── test-clean.sh ├── test-export.sh └── wolfdown.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/example-notebook-series-exported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/example-notebook-series-exported.png -------------------------------------------------------------------------------- /assets/example-notebook-series-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/example-notebook-series-post.png -------------------------------------------------------------------------------- /assets/example-notebook-series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/example-notebook-series.png -------------------------------------------------------------------------------- /assets/example-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/example-notebook.png -------------------------------------------------------------------------------- /assets/jekyll-example-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/jekyll-example-post.png -------------------------------------------------------------------------------- /assets/jekyll-example-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/assets/jekyll-example-site.png -------------------------------------------------------------------------------- /development/development-02-find-cover-image.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/development/development-02-find-cover-image.nb -------------------------------------------------------------------------------- /development/exporter-development.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/development/exporter-development.nb -------------------------------------------------------------------------------- /development/functions-old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/development/functions-old.m -------------------------------------------------------------------------------- /development/test-exportNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/development/test-exportNotebook.nb -------------------------------------------------------------------------------- /example-blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/.DS_Store -------------------------------------------------------------------------------- /example-blog/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /example-blog/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_config.yml -------------------------------------------------------------------------------- /example-blog/_includes/figure-col-right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/figure-col-right.html -------------------------------------------------------------------------------- /example-blog/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/footer.html -------------------------------------------------------------------------------- /example-blog/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/head.html -------------------------------------------------------------------------------- /example-blog/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/header.html -------------------------------------------------------------------------------- /example-blog/_includes/icon-github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/icon-github.html -------------------------------------------------------------------------------- /example-blog/_includes/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/icon-github.svg -------------------------------------------------------------------------------- /example-blog/_includes/icon-twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/icon-twitter.html -------------------------------------------------------------------------------- /example-blog/_includes/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_includes/icon-twitter.svg -------------------------------------------------------------------------------- /example-blog/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_layouts/default.html -------------------------------------------------------------------------------- /example-blog/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_layouts/page.html -------------------------------------------------------------------------------- /example-blog/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_layouts/post.html -------------------------------------------------------------------------------- /example-blog/_posts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_posts/.DS_Store -------------------------------------------------------------------------------- /example-blog/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_sass/_base.scss -------------------------------------------------------------------------------- /example-blog/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_sass/_layout.scss -------------------------------------------------------------------------------- /example-blog/_sass/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_sass/_posts.scss -------------------------------------------------------------------------------- /example-blog/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /example-blog/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/about.md -------------------------------------------------------------------------------- /example-blog/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/css/bootstrap.css -------------------------------------------------------------------------------- /example-blog/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/css/bootstrap.min.css -------------------------------------------------------------------------------- /example-blog/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/css/main.scss -------------------------------------------------------------------------------- /example-blog/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/feed.xml -------------------------------------------------------------------------------- /example-blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-blog/index.html -------------------------------------------------------------------------------- /example-notebooks/eg-notebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-notebooks/eg-notebook.nb -------------------------------------------------------------------------------- /example-notebooks/rule-22-random-init-density.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-notebooks/rule-22-random-init-density.nb -------------------------------------------------------------------------------- /example-notebooks/rule-22-random-init.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-notebooks/rule-22-random-init.nb -------------------------------------------------------------------------------- /example-notebooks/rule-22-simple-init.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-notebooks/rule-22-simple-init.nb -------------------------------------------------------------------------------- /example-notebooks/text-only-notebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/example-notebooks/text-only-notebook.nb -------------------------------------------------------------------------------- /export-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-dir.sh -------------------------------------------------------------------------------- /export-test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/.DS_Store -------------------------------------------------------------------------------- /export-test/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /export-test/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_config.yml -------------------------------------------------------------------------------- /export-test/_includes/figure-col-right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/figure-col-right.html -------------------------------------------------------------------------------- /export-test/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/footer.html -------------------------------------------------------------------------------- /export-test/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/head.html -------------------------------------------------------------------------------- /export-test/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/header.html -------------------------------------------------------------------------------- /export-test/_includes/icon-github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/icon-github.html -------------------------------------------------------------------------------- /export-test/_includes/icon-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/icon-github.svg -------------------------------------------------------------------------------- /export-test/_includes/icon-twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/icon-twitter.html -------------------------------------------------------------------------------- /export-test/_includes/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_includes/icon-twitter.svg -------------------------------------------------------------------------------- /export-test/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_layouts/default.html -------------------------------------------------------------------------------- /export-test/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_layouts/page.html -------------------------------------------------------------------------------- /export-test/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_layouts/post.html -------------------------------------------------------------------------------- /export-test/_posts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/.DS_Store -------------------------------------------------------------------------------- /export-test/_posts/2017-05-23-eg-notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/2017-05-23-eg-notebook.md -------------------------------------------------------------------------------- /export-test/_posts/2017-05-23-rule-22-random-init-density.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/2017-05-23-rule-22-random-init-density.md -------------------------------------------------------------------------------- /export-test/_posts/2017-05-23-rule-22-random-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/2017-05-23-rule-22-random-init.md -------------------------------------------------------------------------------- /export-test/_posts/2017-05-23-rule-22-simple-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/2017-05-23-rule-22-simple-init.md -------------------------------------------------------------------------------- /export-test/_posts/2017-05-23-text-only-notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_posts/2017-05-23-text-only-notebook.md -------------------------------------------------------------------------------- /export-test/_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_sass/_base.scss -------------------------------------------------------------------------------- /export-test/_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_sass/_layout.scss -------------------------------------------------------------------------------- /export-test/_sass/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_sass/_posts.scss -------------------------------------------------------------------------------- /export-test/_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /export-test/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/about.md -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_4.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_5.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_7.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/eg-notebook-500px/eg-notebook_8.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-random-init-500px/rule-22-random-init_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-random-init-500px/rule-22-random-init_3.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-random-init-500px/rule-22-random-init_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-random-init-500px/rule-22-random-init_4.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-random-init-density-500px/rule-22-random-init-density_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-random-init-density-500px/rule-22-random-init-density_3.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-random-init-density-500px/rule-22-random-init-density_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-random-init-density-500px/rule-22-random-init-density_4.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-simple-init-500px/rule-22-simple-init_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-simple-init-500px/rule-22-simple-init_3.gif -------------------------------------------------------------------------------- /export-test/assets/2017/05/23/rule-22-simple-init-500px/rule-22-simple-init_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/assets/2017/05/23/rule-22-simple-init-500px/rule-22-simple-init_4.gif -------------------------------------------------------------------------------- /export-test/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/css/bootstrap.css -------------------------------------------------------------------------------- /export-test/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/css/bootstrap.min.css -------------------------------------------------------------------------------- /export-test/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/css/main.scss -------------------------------------------------------------------------------- /export-test/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/feed.xml -------------------------------------------------------------------------------- /export-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export-test/index.html -------------------------------------------------------------------------------- /export_nb_to_static_site.wolframscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/export_nb_to_static_site.wolframscript -------------------------------------------------------------------------------- /functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/functions.m -------------------------------------------------------------------------------- /functions.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/functions.nb -------------------------------------------------------------------------------- /test-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/test-clean.sh -------------------------------------------------------------------------------- /test-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/test-export.sh -------------------------------------------------------------------------------- /wolfdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-jean/wolfdown/HEAD/wolfdown.sh --------------------------------------------------------------------------------