├── .gitignore ├── Makefile ├── README.md ├── _config.yml ├── article.latex ├── blue-toc.html5 ├── bootstrap-adaptive.html5 ├── bootstrap.html5 ├── custom.revealjs ├── default.docx ├── eisvogel.latex ├── github.html5 ├── html ├── Pandoc’s Markdown 語法中文翻譯.html ├── bootstrap-adaptive.html ├── css │ ├── bootstrap-adaptive.css │ ├── bootstrap-adaptive │ │ ├── dcaccordion.css │ │ └── skins │ │ │ ├── black.css │ │ │ ├── blue.css │ │ │ ├── clean.css │ │ │ ├── demo.css │ │ │ ├── graphite.css │ │ │ ├── grey.css │ │ │ └── images │ │ │ ├── arr_black.gif │ │ │ ├── arr_white.gif │ │ │ ├── arrow.png │ │ │ ├── arrow1.png │ │ │ ├── arrow2.gif │ │ │ ├── arrow_black_down.png │ │ │ ├── arrow_black_right.png │ │ │ ├── arrow_grey.png │ │ │ ├── arrow_grey_down.png │ │ │ ├── arrow_grey_down_x.png │ │ │ ├── arrow_grey_right.png │ │ │ ├── arrow_grey_right_x.png │ │ │ ├── arrow_red_down.png │ │ │ ├── arrow_red_right.png │ │ │ ├── arrow_right.png │ │ │ ├── arrv_white.gif │ │ │ ├── bcgWepButton.gif │ │ │ ├── bg_black.png │ │ │ ├── bg_clean.png │ │ │ ├── bg_clean_on.png │ │ │ ├── bg_graphite.png │ │ │ ├── bg_graphite_arrow.png │ │ │ ├── bg_green_blue.png │ │ │ ├── bg_grey.png │ │ │ ├── bg_white.jpg │ │ │ ├── bullet.png │ │ │ ├── bullet_active.png │ │ │ ├── checkers.png │ │ │ ├── checkers_x.png │ │ │ ├── graphite_arrow_down.png │ │ │ ├── graphite_arrow_right.png │ │ │ ├── minus_grey.png │ │ │ ├── minus_red.png │ │ │ ├── opacity.png │ │ │ ├── plus_grey.png │ │ │ ├── plus_red.png │ │ │ └── stripes.png │ ├── bootstrap.css │ ├── github-v1.css │ └── github.css ├── how-to-be-more-productive.html ├── js │ ├── bootstrap-adaptive │ │ ├── jquery.cookie.js │ │ ├── jquery.dcjqaccordion.2.7.js │ │ ├── jquery.dcjqaccordion.2.7.min.js │ │ └── jquery.hoverIntent.minified.js │ └── uikit │ │ ├── jquery.sticky-kit.js │ │ ├── scripts.js │ │ └── uikit.js ├── productive.html ├── stylesheets │ ├── blue-toc.css │ ├── orange-toc.css │ └── uikit.css └── uikit.html ├── index.html ├── markdown ├── algorithms-template.md ├── example.md ├── git.md ├── how-to-be-more-productive.markdown ├── markdown.md ├── pandoc.markdown └── solutions.md ├── mermaid ├── mermaid.css └── mermaid.min.js ├── orange-toc.html5 ├── pdf ├── algorithms-template.pdf ├── example.pdf ├── example.png ├── pandoc-zhtw.pdf └── solutions.pdf ├── pm-template.latex ├── reference.docx └── uikit.html5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/_config.yml -------------------------------------------------------------------------------- /article.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/article.latex -------------------------------------------------------------------------------- /blue-toc.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/blue-toc.html5 -------------------------------------------------------------------------------- /bootstrap-adaptive.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/bootstrap-adaptive.html5 -------------------------------------------------------------------------------- /bootstrap.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/bootstrap.html5 -------------------------------------------------------------------------------- /custom.revealjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/custom.revealjs -------------------------------------------------------------------------------- /default.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/default.docx -------------------------------------------------------------------------------- /eisvogel.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/eisvogel.latex -------------------------------------------------------------------------------- /github.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/github.html5 -------------------------------------------------------------------------------- /html/Pandoc’s Markdown 語法中文翻譯.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/Pandoc’s Markdown 語法中文翻譯.html -------------------------------------------------------------------------------- /html/bootstrap-adaptive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/bootstrap-adaptive.html -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/dcaccordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/dcaccordion.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/black.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/blue.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/clean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/clean.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/demo.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/graphite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/graphite.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/grey.css -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arr_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arr_black.gif -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arr_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arr_white.gif -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow1.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow2.gif -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_black_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_black_down.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_black_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_black_right.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_grey.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_grey_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_grey_down.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_grey_down_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_grey_down_x.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_grey_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_grey_right.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_grey_right_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_grey_right_x.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_red_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_red_down.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_red_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_red_right.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrow_right.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/arrv_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/arrv_white.gif -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bcgWepButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bcgWepButton.gif -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_black.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_clean.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_clean_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_clean_on.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_graphite.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_graphite_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_graphite_arrow.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_green_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_green_blue.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_grey.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bg_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bg_white.jpg -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bullet.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/bullet_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/bullet_active.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/checkers.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/checkers_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/checkers_x.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/graphite_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/graphite_arrow_down.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/graphite_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/graphite_arrow_right.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/minus_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/minus_grey.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/minus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/minus_red.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/opacity.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/plus_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/plus_grey.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/plus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/plus_red.png -------------------------------------------------------------------------------- /html/css/bootstrap-adaptive/skins/images/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap-adaptive/skins/images/stripes.png -------------------------------------------------------------------------------- /html/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/bootstrap.css -------------------------------------------------------------------------------- /html/css/github-v1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/github-v1.css -------------------------------------------------------------------------------- /html/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/css/github.css -------------------------------------------------------------------------------- /html/how-to-be-more-productive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/how-to-be-more-productive.html -------------------------------------------------------------------------------- /html/js/bootstrap-adaptive/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/bootstrap-adaptive/jquery.cookie.js -------------------------------------------------------------------------------- /html/js/bootstrap-adaptive/jquery.dcjqaccordion.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/bootstrap-adaptive/jquery.dcjqaccordion.2.7.js -------------------------------------------------------------------------------- /html/js/bootstrap-adaptive/jquery.dcjqaccordion.2.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/bootstrap-adaptive/jquery.dcjqaccordion.2.7.min.js -------------------------------------------------------------------------------- /html/js/bootstrap-adaptive/jquery.hoverIntent.minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/bootstrap-adaptive/jquery.hoverIntent.minified.js -------------------------------------------------------------------------------- /html/js/uikit/jquery.sticky-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/uikit/jquery.sticky-kit.js -------------------------------------------------------------------------------- /html/js/uikit/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/uikit/scripts.js -------------------------------------------------------------------------------- /html/js/uikit/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/js/uikit/uikit.js -------------------------------------------------------------------------------- /html/productive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/productive.html -------------------------------------------------------------------------------- /html/stylesheets/blue-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/stylesheets/blue-toc.css -------------------------------------------------------------------------------- /html/stylesheets/orange-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/stylesheets/orange-toc.css -------------------------------------------------------------------------------- /html/stylesheets/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/stylesheets/uikit.css -------------------------------------------------------------------------------- /html/uikit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/html/uikit.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/index.html -------------------------------------------------------------------------------- /markdown/algorithms-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/algorithms-template.md -------------------------------------------------------------------------------- /markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/example.md -------------------------------------------------------------------------------- /markdown/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/git.md -------------------------------------------------------------------------------- /markdown/how-to-be-more-productive.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/how-to-be-more-productive.markdown -------------------------------------------------------------------------------- /markdown/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/markdown.md -------------------------------------------------------------------------------- /markdown/pandoc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/pandoc.markdown -------------------------------------------------------------------------------- /markdown/solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/markdown/solutions.md -------------------------------------------------------------------------------- /mermaid/mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/mermaid/mermaid.css -------------------------------------------------------------------------------- /mermaid/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/mermaid/mermaid.min.js -------------------------------------------------------------------------------- /orange-toc.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/orange-toc.html5 -------------------------------------------------------------------------------- /pdf/algorithms-template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pdf/algorithms-template.pdf -------------------------------------------------------------------------------- /pdf/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pdf/example.pdf -------------------------------------------------------------------------------- /pdf/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pdf/example.png -------------------------------------------------------------------------------- /pdf/pandoc-zhtw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pdf/pandoc-zhtw.pdf -------------------------------------------------------------------------------- /pdf/solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pdf/solutions.pdf -------------------------------------------------------------------------------- /pm-template.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/pm-template.latex -------------------------------------------------------------------------------- /reference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/reference.docx -------------------------------------------------------------------------------- /uikit.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshu-w/pandoc-templates/HEAD/uikit.html5 --------------------------------------------------------------------------------