-
Notifications
You must be signed in to change notification settings - Fork 57
/
mkdocs.yml
106 lines (101 loc) · 3.94 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
site_name: KGTK documentation
nav:
- Home: index.md
- 'Getting Started':
- 'Basic KGTK Installation': install.md
- 'Installation Procedure Details': KGTK-Installation-Procedure-Details.md
- KGTK data model: data_model.md
- KGTK file specification: specification.md
- KGTK environment variables: envars.md
- KGTK graph cache: graph_cache.md
- 'Import commands':
- 'import-atomic': 'import/import_atomic.md'
- 'import-conceptnet': 'import/import_conceptnet.md'
- 'import-concept-pairs': 'import/import_concept_pairs.md'
- 'import-framenet': 'import/import_framenet.md'
- 'import-ntriples': 'import/import_ntriples.md'
- 'import-visualgenome': 'import/import_visualgenome.md'
- 'import-wikidata': 'import/import_wikidata.md'
- 'import-wordnet': 'import/import_wordnet.md'
- 'Export commands':
- 'export-gt': 'export/export_gt.md'
- 'generate_wikidata_triples': 'export/generate_wikidata_triples.md'
- 'Transformation commands':
- 'add-id': 'transform/add_id.md'
- 'add-labels': 'transform/add_labels.md'
- 'calc': 'transform/calc.md'
- 'cat': 'transform/cat.md'
- 'compact': 'transform/compact.md'
- 'convert-embeddings-format': 'transform/convert_embeddings_format.md'
- 'expand': 'transform/expand.md'
- 'explode': 'transform/explode.md'
- 'filter': 'transform/filter.md'
- 'head': 'transform/head.md'
- 'html': 'transform/html.md'
- 'ifempty': 'transform/ifempty.md'
- 'ifexists': 'transform/ifexists.md'
- 'ifnotempty': 'transform/ifnotempty.md'
- 'ifnotexists': 'transform/ifnotexists.md'
- 'implode': 'transform/implode.md'
- 'join': 'transform/join.md'
- 'lexicalize': 'transform/lexicalize.md'
- 'lift': 'transform/lift.md'
- 'lower': 'transform/normalize.md'
- 'md': 'transform/md.md'
- 'normalize': 'transform/normalize.md'
- 'normalize-edges': 'transform/normalize.md'
- 'normalize-nodes': 'transform/normalize_nodes.md'
- 'query': 'transform/query.md'
- 'sample': 'transform/sample.md'
- 'remove-columns': 'transform/remove_columns.md'
- 'rename-columns': 'transform/rename_columns.md'
- 'reorder-columns': 'transform/reorder_columns.md'
- 'replace-nodes': 'transform/replace_nodes.md'
- 'select-columns': 'transform/select_columns.md'
- 'sort': 'transform/sort.md'
- 'table': 'transform/table.md'
- 'tail': 'transform/tail.md'
- 'tee': 'transform/tee.md'
- 'unique': 'transform/unique.md'
- 'unreify-rdf-statements': 'transform/unreify_rdf_statements.md'
- 'unreify-values': 'transform/unreify_values.md'
# - 'zconcat': 'transform/zconcat.md' # Disabled 21-Jan-2021
- 'Curation commands':
- 'clean-data': 'curate/clean_data.md'
- 'validate': 'curate/validate.md'
- 'validate-properties': 'curate/validate_properties.md'
- 'Analysis commands':
- 'community-detection': 'analysis/community-detection.md'
- 'connected-components': 'analysis/connected_components.md'
- 'graph-embeddings': 'analysis/graph_embeddings.md'
- 'graph-statistics': 'analysis/graph_statistics.md'
- 'paths': 'analysis/paths.md'
- 'reachable-nodes': 'analysis/reachable_nodes.md'
- 'text-embeddings': 'analysis/text_embedding.md'
- 'visualize-graph': 'analysis/visualize-graph.md'
- Using pipes: pipes.md
- Configure KGTK Notebooks: configure-kgtk-notebooks-readme.md
theme:
name: material
logo: images/kgtk_logo_200x200.png
features:
- search.highlight
- search.share
- search.suggest
extra_css:
- stylesheets/extra.css
repo_url: https://github.com/usc-isi-i2/kgtk
plugins:
- mknotebooks
- search:
prebuild_index: true
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- pymdownx.mark:
smart_mark: true
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true