-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
51 lines (43 loc) · 1.11 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
site_name: Color Transfer via Sliced Optimal Transport
markdown_extensions:
- codehilite
- attr_list
- admonition
- footnotes
- markdown.extensions.footnotes
- markdown.extensions.smarty
- pymdownx.superfences
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.arithmatex
- pymdownx.emoji
extra:
search:
tokenizer: '[\s\-\.::]+'
theme:
name: material
palette:
primary: 'light-green'
accent: 'deep orange'
font:
text: 'PT Serif'
code: 'Inconsolata'
extra_css:
- extras.css
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
repo_name: 'dcoeurjo/OTColorTransfer'
repo_url: 'https://github.com/dcoeurjo/OTColorTransfer'
edit_uri: ''
docs_dir: 'docs-source'
site_dir: 'docs'
nav:
- Introduction: 'index.md'
- Color Transfer (CPU/Balanced): 'original.md'
- Color Transfer (CPU/Partial): 'partial.md'
- nD Transfer (CPU): 'nd.md'
- Color Transfer (GPU/Balanced): 'todo.md'
- Python example code: 'python.md'
- Author/License: 'license.md'
- Changelog: 'Changelog.md'
- Contributing: 'Contributing.md'