├── .gitignore ├── example ├── includes │ ├── second │ │ ├── a.html │ │ ├── third │ │ │ └── i.html │ │ └── b.html │ ├── 1.html │ ├── 4.html │ ├── 3.html │ └── 2.html ├── .travis.yml ├── lib │ ├── font │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ ├── league-gothic.woff │ │ │ └── league-gothic.css │ │ └── source-sans-pro │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ ├── source-sans-pro.css │ │ │ └── LICENSE │ ├── js │ │ ├── html5shiv.js │ │ └── classList.js │ └── css │ │ └── zenburn.css ├── test │ ├── examples │ │ ├── assets │ │ │ ├── image1.png │ │ │ └── image2.png │ │ ├── barebones.html │ │ ├── embedded-media.html │ │ ├── slide-transitions.html │ │ ├── slide-backgrounds.html │ │ └── math.html │ ├── simple.md │ ├── test-markdown.js │ ├── test-pdf.js │ ├── test-markdown-options.js │ ├── test-markdown-external.js │ ├── test-markdown-options.html │ ├── test-markdown-external.html │ ├── test-markdown.html │ ├── test-pdf.html │ ├── test.html │ ├── test-markdown-element-attributes.js │ ├── test-markdown-slide-attributes.js │ ├── test-markdown-slide-attributes.html │ ├── test-markdown-element-attributes.html │ └── qunit-1.12.0.css ├── .gitignore ├── plugin │ ├── markdown │ │ ├── example.md │ │ └── example.html │ ├── multiplex │ │ ├── client.js │ │ ├── package.json │ │ ├── master.js │ │ └── index.js │ ├── print-pdf │ │ └── print-pdf.js │ ├── math │ │ └── math.js │ ├── notes-server │ │ ├── index.js │ │ └── client.js │ ├── notes │ │ └── notes.js │ ├── external │ │ └── external.js │ └── search │ │ └── search.js ├── bower.json ├── css │ ├── theme │ │ ├── source │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── league.scss │ │ │ ├── sky.scss │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── white.scss │ │ │ ├── simple.scss │ │ │ ├── moon.scss │ │ │ ├── solarized.scss │ │ │ └── blood.scss │ │ ├── template │ │ │ ├── settings.scss │ │ │ ├── mixins.scss │ │ │ └── theme.scss │ │ ├── README.md │ │ ├── night.css │ │ ├── serif.css │ │ ├── moon.css │ │ ├── solarized.css │ │ ├── white.css │ │ ├── black.css │ │ ├── simple.css │ │ └── sky.css │ └── print │ │ ├── pdf.css │ │ └── paper.css ├── CONTRIBUTING.md ├── LICENSE ├── package.json ├── index.html └── Gruntfile.js ├── .editorconfig ├── bower.json ├── package.json ├── LICENSE ├── readme.md └── external └── external.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /example/includes/second/a.html: -------------------------------------------------------------------------------- 1 | File a.html -------------------------------------------------------------------------------- /example/includes/second/third/i.html: -------------------------------------------------------------------------------- 1 | File i.html -------------------------------------------------------------------------------- /example/includes/second/b.html: -------------------------------------------------------------------------------- 1 | File b.html 2 |
-------------------------------------------------------------------------------- /example/includes/1.html: -------------------------------------------------------------------------------- 1 |