├── .gitignore
├── docs
├── index_foot.html
├── thumb
│ ├── basic.png
│ ├── hyde.png
│ ├── tufte.png
│ ├── vela.png
│ ├── jemdoc.png
│ ├── lanyon.png
│ ├── pure-sm.png
│ ├── sandbox.png
│ ├── hypertext.png
│ ├── just-the-docs.png
│ └── minimal-mistakes.png
├── index_head.html
└── make.jl
├── src
├── templates
│ ├── common
│ │ ├── .gitignore
│ │ ├── _layout
│ │ │ ├── head_katex.html
│ │ │ ├── head_highlight.html
│ │ │ ├── foot_highlight.html
│ │ │ ├── foot_katex.html
│ │ │ ├── foot.html
│ │ │ ├── page_foot.html
│ │ │ └── tag.html
│ │ ├── _assets
│ │ │ ├── favicon.png
│ │ │ ├── rndimg.jpg
│ │ │ ├── scripts
│ │ │ │ ├── output
│ │ │ │ │ └── script1.out
│ │ │ │ ├── script2.jl
│ │ │ │ ├── script1.jl
│ │ │ │ └── generate_results.jl
│ │ │ └── hamburger.svg
│ │ ├── _libs
│ │ │ ├── katex
│ │ │ │ ├── fonts
│ │ │ │ │ ├── KaTeX_AMS-Regular.ttf
│ │ │ │ │ ├── KaTeX_Main-Bold.ttf
│ │ │ │ │ ├── KaTeX_Main-Bold.woff
│ │ │ │ │ ├── KaTeX_Main-Bold.woff2
│ │ │ │ │ ├── KaTeX_Main-Italic.ttf
│ │ │ │ │ ├── KaTeX_Math-Italic.ttf
│ │ │ │ │ ├── KaTeX_AMS-Regular.woff
│ │ │ │ │ ├── KaTeX_AMS-Regular.woff2
│ │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf
│ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff
│ │ │ │ │ ├── KaTeX_Main-Italic.woff
│ │ │ │ │ ├── KaTeX_Main-Italic.woff2
│ │ │ │ │ ├── KaTeX_Main-Regular.ttf
│ │ │ │ │ ├── KaTeX_Main-Regular.woff
│ │ │ │ │ ├── KaTeX_Math-Italic.woff
│ │ │ │ │ ├── KaTeX_Math-Italic.woff2
│ │ │ │ │ ├── KaTeX_Size1-Regular.ttf
│ │ │ │ │ ├── KaTeX_Size2-Regular.ttf
│ │ │ │ │ ├── KaTeX_Size3-Regular.ttf
│ │ │ │ │ ├── KaTeX_Size4-Regular.ttf
│ │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf
│ │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2
│ │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf
│ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff
│ │ │ │ │ ├── KaTeX_Main-BoldItalic.ttf
│ │ │ │ │ ├── KaTeX_Main-BoldItalic.woff
│ │ │ │ │ ├── KaTeX_Main-Regular.woff2
│ │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf
│ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff
│ │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf
│ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff
│ │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2
│ │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf
│ │ │ │ │ ├── KaTeX_Script-Regular.ttf
│ │ │ │ │ ├── KaTeX_Script-Regular.woff
│ │ │ │ │ ├── KaTeX_Script-Regular.woff2
│ │ │ │ │ ├── KaTeX_Size1-Regular.woff
│ │ │ │ │ ├── KaTeX_Size1-Regular.woff2
│ │ │ │ │ ├── KaTeX_Size2-Regular.woff
│ │ │ │ │ ├── KaTeX_Size2-Regular.woff2
│ │ │ │ │ ├── KaTeX_Size3-Regular.woff
│ │ │ │ │ ├── KaTeX_Size3-Regular.woff2
│ │ │ │ │ ├── KaTeX_Size4-Regular.woff
│ │ │ │ │ ├── KaTeX_Size4-Regular.woff2
│ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff
│ │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2
│ │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2
│ │ │ │ │ ├── KaTeX_Main-BoldItalic.woff2
│ │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2
│ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff
│ │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2
│ │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf
│ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff
│ │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf
│ │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf
│ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff
│ │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2
│ │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2
│ │ │ │ │ ├── KaTeX_Typewriter-Regular.woff
│ │ │ │ │ └── KaTeX_Typewriter-Regular.woff2
│ │ │ │ └── auto-render.min.js
│ │ │ └── highlight
│ │ │ │ └── github.min.css
│ │ ├── .gitlab-ci.yml
│ │ ├── utils.jl
│ │ ├── config.md
│ │ ├── .github
│ │ │ └── workflows
│ │ │ │ └── deploy.yml
│ │ ├── menu1.md
│ │ ├── menu3.md
│ │ ├── menu2.md
│ │ ├── _css
│ │ │ └── franklin.css
│ │ └── index.md
│ ├── just-the-docs
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── foot.html
│ │ │ ├── head.html
│ │ │ ├── tag.html
│ │ │ └── pgwrap.html
│ │ └── _assets
│ │ │ └── favicon.ico
│ ├── sandbox-extended
│ │ ├── config.md
│ │ ├── Project.toml
│ │ ├── gr.md
│ │ ├── literate.md
│ │ ├── _layout
│ │ │ └── head.html
│ │ ├── index.md
│ │ ├── hyperscript.md
│ │ ├── _literate
│ │ │ └── ex1.jl
│ │ ├── mdpad.md
│ │ ├── _libs
│ │ │ └── mdpad
│ │ │ │ ├── mdpad.min.js
│ │ │ │ └── mdpad-mithril.js
│ │ ├── pyplot.md
│ │ └── plotly.md
│ ├── sandbox
│ │ ├── config.md
│ │ ├── _layout
│ │ │ └── head.html
│ │ └── index.md
│ ├── jemdoc
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── foot.html
│ │ │ ├── head.html
│ │ │ ├── tag.html
│ │ │ └── table.html
│ │ └── _css
│ │ │ └── jemdoc.css
│ ├── hypertext
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── header.html
│ │ │ ├── tag.html
│ │ │ └── head.html
│ │ └── _css
│ │ │ └── hypertext.css
│ ├── minimal-mistakes
│ │ ├── _assets
│ │ │ └── minimal-mistakes
│ │ │ │ ├── zenobia.png
│ │ │ │ ├── mm-free-feature.png
│ │ │ │ ├── mm-home-page-feature.jpg
│ │ │ │ ├── mm-responsive-feature.png
│ │ │ │ └── mm-customizable-feature.png
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── head.html
│ │ │ ├── masthead.html
│ │ │ ├── body_layout.html
│ │ │ ├── foot.html
│ │ │ └── tag.html
│ │ ├── _css
│ │ │ └── adjust.css
│ │ └── index.html
│ ├── vela
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── foot.html
│ │ │ ├── head.html
│ │ │ ├── tag.html
│ │ │ └── nav.html
│ │ └── _libs
│ │ │ └── vela
│ │ │ ├── init_metisMenu.js
│ │ │ ├── metisMenu.min.js
│ │ │ └── slideout.min.js
│ ├── lanyon
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── foot.html
│ │ │ ├── head.html
│ │ │ ├── tag.html
│ │ │ └── sidebar.html
│ │ └── _css
│ │ │ ├── adjust.css
│ │ │ └── poole_lanyon.css
│ ├── tufte
│ │ ├── _assets
│ │ │ └── et-book
│ │ │ │ ├── et-book-bold-line-figures
│ │ │ │ ├── et-book-bold-line-figures.eot
│ │ │ │ ├── et-book-bold-line-figures.ttf
│ │ │ │ └── et-book-bold-line-figures.woff
│ │ │ │ ├── et-book-roman-line-figures
│ │ │ │ ├── et-book-roman-line-figures.eot
│ │ │ │ ├── et-book-roman-line-figures.ttf
│ │ │ │ └── et-book-roman-line-figures.woff
│ │ │ │ ├── et-book-roman-old-style-figures
│ │ │ │ ├── et-book-roman-old-style-figures.eot
│ │ │ │ ├── et-book-roman-old-style-figures.ttf
│ │ │ │ └── et-book-roman-old-style-figures.woff
│ │ │ │ ├── et-book-semi-bold-old-style-figures
│ │ │ │ ├── et-book-semi-bold-old-style-figures.eot
│ │ │ │ ├── et-book-semi-bold-old-style-figures.ttf
│ │ │ │ └── et-book-semi-bold-old-style-figures.woff
│ │ │ │ └── et-book-display-italic-old-style-figures
│ │ │ │ ├── et-book-display-italic-old-style-figures.eot
│ │ │ │ ├── et-book-display-italic-old-style-figures.ttf
│ │ │ │ └── et-book-display-italic-old-style-figures.woff
│ │ ├── _layout
│ │ │ ├── style.html
│ │ │ ├── nav.html
│ │ │ ├── foot.html
│ │ │ ├── head.html
│ │ │ └── tag.html
│ │ └── _css
│ │ │ ├── latex.css
│ │ │ └── adjust.css
│ ├── hyde
│ │ ├── _layout
│ │ │ ├── foot.html
│ │ │ ├── tag.html
│ │ │ ├── head.html
│ │ │ ├── style.html
│ │ │ └── sidebar.html
│ │ └── _css
│ │ │ └── poole_hyde.css
│ ├── pure-sm
│ │ ├── _layout
│ │ │ ├── foot.html
│ │ │ ├── style.html
│ │ │ ├── head.html
│ │ │ ├── tag.html
│ │ │ └── sidebar.html
│ │ ├── _libs
│ │ │ └── pure
│ │ │ │ └── ui.min.js
│ │ └── _css
│ │ │ └── side-menu.css
│ └── basic
│ │ ├── _layout
│ │ ├── header.html
│ │ ├── tag.html
│ │ └── head.html
│ │ └── _css
│ │ └── basic.css
├── FranklinTemplates.jl
└── utils.jl
├── Project.toml
├── .github
└── workflows
│ └── TagBot.yml
├── deploy.jl
├── LICENSE.md
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | *DS_Store
2 | docs/build/
3 | junk/
4 |
--------------------------------------------------------------------------------
/docs/index_foot.html:
--------------------------------------------------------------------------------
1 |
2 |