forked from citizennet/purescript-halogen-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
87 lines (79 loc) · 2.29 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
# Project information
site_name: 'Select Documentation'
site_description: 'Building blocks for common selection user interfaces in PureScript & Halogen'
site_author: 'Thomas Honeyman'
site_url: 'https://citizennet.github.io/purescript-halogen-select'
# Repository
repo_name: 'purescript-halogen-select'
repo_url: 'https://github.com/citizennet/purescript-halogen-select'
# Copyright
copyright: 'Copyright © 2018 CitizenNet'
# Config
theme:
name: 'material'
custom_dir: 'docs/theme'
language: 'en'
palette:
primary: 'cyan'
accent: 'cyan'
font:
text: 'Open Sans'
code: 'Roboto Mono'
logo:
icon: 'school'
# To mount components
extra_javascript:
- js/app.js
# To style components
extra_css:
- css/cn-tailwind.scoped.css
# Google Analytics
# google_analytics:
# - 'UA-XXXXXXXX-X'
# - 'auto'
# Extensions
# Recommended here:
# https://squidfunk.github.io/mkdocs-material/getting-started/#extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Site architecture
pages:
- Home: 'index.md'
# - Design Philosophy: 'index.md'
- Tutorials:
- 'Project setup': 'tutorials/getting-started.md'
- 'Build a dropdown': 'tutorials/dropdown.md'
- 'Build a typeahead': 'tutorials/typeahead.md'
# - 'Build a date picker': 'index.md'
- How To:
- 'How to embed parent queries': 'how-to/embed-parent-queries.md'
# - 'How to leverage the parent state for rendering': 'index.md'
# - 'How to watch a key on the parent state': 'index.md'
# - 'How to understand common type errors': 'index.md'
# - 'How to write your own setProps functions': 'index.md'
- Concepts:
# - 'Advice for writing better render functions': 'index.md'
# - 'Controlling component behavior from HTML': 'index.md'
- 'Understanding free queries': 'concepts/understanding-free-queries.md'
- Examples: 'examples.md'