-
Notifications
You must be signed in to change notification settings - Fork 179
/
mkdocs.yml
executable file
·64 lines (56 loc) · 1.3 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
site_name: Spek Framework
# Meta tags (placed in header)
site_description: Spektakular test framework for Kotlin.
site_author: Spek Team
site_url: https://spekframework.org
# Repository (add link to repository on each page)
repo_name: Spek Framework
repo_url: https://github.com/spekframework/spek
edit_uri: edit/2.x/docs
#Copyright (shown at the footer)
copyright: 'Copyright © 2018 Spek Team'
# Meterial theme
theme:
name: 'material'
logo:
icon: 'code'
palette:
primary: 'teal'
accent: 'cyan'
social:
- type: 'github'
link: 'https://github.com/spekframework'
font:
text: 'Fira Sans'
code: 'Fira Mono'
# Google Analytics
#google_analytics:
# - 'UA-111111111-1'
# - 'auto'
# Extensions
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
pages:
- Overview: index.md
- Breaking changes: breaking-changes.md
- Migrating to 2.x: migration.md
- Setting up:
- JVM: setup-jvm.md
- Android: setup-android.md
- Core Concepts: core-concepts.md
- Running tests: running.md
- Styles:
- Specification: specification.md
- Gherkin: gherkin.md