Skip to content

Commit b8b61bb

Browse files
committed
PDF export
1 parent 9fd1af5 commit b8b61bb

4 files changed

Lines changed: 179 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
1010
- restore_cache: # ensure this step occurs *before* installing dependencies
1111
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
12+
- run: |
13+
sudo apt-get install build-essential python3-dev python3-pip \
14+
python3-setuptools python3-wheel python3-cffi \
15+
libcairo2 libpango-1.0-0 libpangocairo-1.0-0 \
16+
libgdk-pixbuf2.0-0 libffi-dev shared-mime-info
1217
- run:
1318
command: |
1419
sudo pip install pipenv

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name = "pypi"
66
[packages]
77
mkdocs = "==1.0.4"
88
mkdocs-material = "==3.0.4"
9+
mkdocs-pdf-export-plugin = "*"
910

1011
[dev-packages]
1112

Pipfile.lock

Lines changed: 170 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mkdocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ site_name: Brain Imaging Data Structure
22
theme: material
33
plugins:
44
- search
5+
- pdf-export:
6+
verbose: true
57
docs_dir: 'src'
6-
use_directory_urls: false
8+
use_directory_urls: false
79
nav:
810
- About: index.md
911
- Specification:

0 commit comments

Comments
 (0)