-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
135 lines (128 loc) · 3.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
site_name: 'Convert-Pheno Documentation'
site_description: 'Convert-Pheno Toolbox Documentation'
site_author: 'Manuel Rueda, PhD'
copyright: '© Copyright 2022-2023, Manuel Rueda, CNAG'
repo_name: 'Convert-Pheno'
repo_url: https://github.com/mrueda/convert-pheno
edit_uri: edit/main/docs/
extra_css: [css/theme_overrides.css]
extra_javascript: [js/theme_overrides.js]
plugins:
- search
- macros
# - external-markdown
- mermaid2:
arguments:
startOnLoad: true
markdown_extensions:
- toc:
toc_depth: 2-3
permalink: true
- admonition
- attr_list
- footnotes
- md_in_html
- pymdownx.critic
- pymdownx.caret
- pymdownx.details
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.saneheaders
- pymdownx.magiclink:
hide_protocol: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- tables
- mdx_gh_links:
user: CNAG-Biomedical-Informatics
repo: convert-pheno
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: docs
url_download: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
nav:
- Introduction:
- What is Convert-Pheno?: what-is-convert-pheno.md
- Supported formats: supported-formats.md
- 'Download & Installation': download-and-installation.md
- Use:
- As a command-line interface: use-as-a-command-line-interface.md
- As a module: use-as-a-module.md
- As an API: use-as-an-api.md
- Web App User interface: https://cnag-biomedical-informatics.github.io/convert-pheno-ui/
- Formats accepted:
- Beacon v2 Models (BFF): bff.md
- Phenopacket v2 (PXF): pxf.md
- REDCap: redcap.md
- OMOP-CDM: omop-cdm.md
- CDISC-ODM: cdisc-odm.md
- CSV: csv.md
- Technical details:
- Implementation: implementation.md
- Mapping steps: mapping-steps.md
- Mapping tables:
- OMOP to BFF: omop2bff.md
- PXF to BFF: pxf2bff.md
- BFF to PXF: bff2pxf.md
- Help:
- Tutorial: tutorial.md
- Google colab: https://colab.research.google.com/drive/1T6F3bLwfZyiYKD6fl1CIxs9vG068RHQ6
- Usage: usage.md
- FAQs: faq.md
- Future plans: future-plans.md
- About:
- About: about.md
- Citation: citation.md
# - Download PDF: pdf/beacon.pdf
theme:
name: material
#custom_dir: overrides
palette:
- media: '(prefers-color-scheme: dark)'
scheme: default
primary: blue grey
accent: amber
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: slate
primary: blue grey
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
logo: img/CP-logo-grey.png
icon:
repo: fontawesome/brands/github-alt
features:
- content.code.select
- content.code.copy
- content.tabs.link
- search.highlight
- search.share
# - navigation.instant # otherwise blocks rendering of mermaid on page load
- navigation.tracking
- navigation.sections
- toc.integrate
# Options
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mrueda
# https://pypi.org/project/mkdocs-with-pdf/ for more PDF configuration ...