├── gh-publisher-scripts ├── build.sh ├── example.travis.yml ├── javascripts │ └── scale.fix.js ├── copy.sh ├── README.md ├── front-matter.yml ├── index.html ├── gh-publisher.sh └── stylesheets │ ├── pygment_trac.css │ └── styles.css └── README.md /gh-publisher-scripts/build.sh: -------------------------------------------------------------------------------- 1 | # 2 | # Use this file to configure your build. 3 | # 4 | # You have the following variables available: 5 | # 6 | # GH_PUBLISHER_PROJECT_DIR - The root of your project repository. 7 | # GH_PUBLISHER_SCRIPTS_DIR - The gh-publisher-scripts directory. 8 | # 9 | # The current working directory is $GH_PUBLISHER_PROJECT_DIR. 10 | # 11 | 12 | cd "$GH_PUBLISHER_PROJECT_DIR" 13 | make 14 | -------------------------------------------------------------------------------- /gh-publisher-scripts/example.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 1.9.3 4 | script: /bin/bash gh-publisher-scripts/gh-publisher.sh 5 | before_install: 6 | - yes "" | sudo apt-add-repository ppa:texlive-backports/ppa 7 | - sudo apt-get update -y 8 | - sudo apt-get install -y 9 | inkscape 10 | texlive-fonts-recommended 11 | texlive-latex-extra 12 | texlive-latex-recommended 13 | texlive-xetex 14 | -------------------------------------------------------------------------------- /gh-publisher-scripts/javascripts/scale.fix.js: -------------------------------------------------------------------------------- 1 | var metas = document.getElementsByTagName('meta'); 2 | var i; 3 | if (navigator.userAgent.match(/iPhone/i)) { 4 | for (i=0; i 20 | # in the address somewhere, indicating a line break. 21 | 22 | #authors: 23 | #- name: Joseph H. Bloggs 24 | # address: International Institute for Interminable Examples, P.O. Box 1,
Beverly Hills, CA 90210, USA. 25 | #- name: Clara McNarma 26 | # address: School of Dance and Drama,
College of the Northern Light,
Dogger, Fisher, German Bight. 27 | -------------------------------------------------------------------------------- /gh-publisher-scripts/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 | 7 | 8 | 9 | 10 | {{ site.title }} 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 |
21 |
22 |

{{site.title }}

23 | {% for author in site.authors %} 24 | 25 |

{{ author.name }}
26 | {{ author.address }}

27 | 28 | {% endfor %} 29 | 30 | {% if site.abstract %} 31 |

{{ site.abstract }}

32 | {% endif %} 33 | 34 |

View the Project on GitHub {{ site.github_username }}/{{ site.github_repo }}

35 | 36 | 39 |
40 | {% if site.iframe_src %} 41 |
42 |