├── .gitignore
├── .htaccess
├── scripts
├── cleanup.sh
├── setup.sh
├── dependencies.sh
└── convert.sh
├── htdocs
├── stylesheets
│ ├── typespiration.com - A showcase of web typography designs with re.webloc
│ ├── typebase.css- The starting point for good typography on the web.webloc
│ ├── 20 Examples of Beautiful CSS Typography Design - WDExplorer.webloc
│ ├── getaway.css
│ ├── typebase.css
│ ├── avenir-white.css
│ ├── screen.css
│ ├── retro.css
│ ├── ieee.css
│ └── acm.css
├── tail.html
├── preview
│ ├── getaway.css
│ ├── typebase.css
│ ├── ieee.css
│ └── acm.css
├── download.php
├── assets
│ └── mark-github.svg
├── errorTail.html
├── errorHead.html
├── head.html
├── print.css
├── custom.css
├── upload.php
├── beta.html
├── normalize.css
├── skeleton.css
└── index.html
├── license.md
├── reference.md
├── README.md
└── php.ini
/.gitignore:
--------------------------------------------------------------------------------
1 | uploads/
2 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | upload_max_filesize = 10000000
2 |
--------------------------------------------------------------------------------
/scripts/cleanup.sh:
--------------------------------------------------------------------------------
1 | # removes all files and directories except uploads/
2 | echo "moving into /var/www/html/ . . ."
3 | cd /var/www/html/
4 | echo " "
5 | echo "before clean-up:"
6 | ls
7 | rm -rf assets preview stylesheets *.css *.html *.ini *.md *.php *.sh
8 | echo " "
9 | echo "after clean-up:"
10 | ls
11 |
--------------------------------------------------------------------------------
/htdocs/stylesheets/typespiration.com - A showcase of web typography designs with re.webloc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | URL
6 | http://typespiration.com/
7 |
8 |
9 |
--------------------------------------------------------------------------------
/htdocs/stylesheets/typebase.css- The starting point for good typography on the web.webloc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | URL
6 | http://devinhunt.github.io/typebase.css/
7 |
8 |
9 |
--------------------------------------------------------------------------------
/htdocs/stylesheets/20 Examples of Beautiful CSS Typography Design - WDExplorer.webloc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | URL
6 | https://wdexplorer.com/20-examples-beautiful-css-typography-design/
7 |
8 |
9 |
--------------------------------------------------------------------------------
/scripts/setup.sh:
--------------------------------------------------------------------------------
1 | # when ran from inside Pandoc-Web-Interface/ will copy all necessary files to root of web directory
2 | echo "copying tool to /var/www/html/ . . ."
3 | cp -r * /var/www/html/
4 |
5 | # copy PHP settings to correct path
6 | echo "copying php.ini to /etc/php/7.0/apache2/ . . ."
7 | sudo cp php.ini /etc/php/7.0/apache2/php.ini
8 |
9 | # Restart Apache2
10 | echo "restarting apache . . ."
11 | sudo service apache2 restart
12 |
--------------------------------------------------------------------------------
/htdocs/tail.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
27 |
28 |
29 |