-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
61 lines (52 loc) · 1.25 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
# Project
site_name: Compose Compiler Report to HTML
site_description: 'Utility to convert Jetpack Compose compiler metrics and reports to beautified 😍 HTML page'
site_author: 'PatilShreyas'
site_url: 'https://github.com/PatilShreyas/compose-report-to-html'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
# Repository
repo_name: 'Compose Report to HTML'
repo_url: https://github.com/PatilShreyas/compose-report-to-html
theme:
name: material
palette:
primary: white
accent: red
icon:
repo: fontawesome/brands/github
font:
text: 'Roboto'
code: 'JetBrains Mono'
features:
- content.action.edit
- content.code.copy
- content.tabs.link
plugins:
- search
markdown_extensions:
# Admonitions
- admonition
- pymdownx.details
# Code highlight
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# Tabs
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
# For images
- attr_list
- md_in_html
# Navigation
nav:
- 'Overview': index.md
- 'How to use?':
- 'Gradle Plugin': use/using-gradle-plugin.md
- 'CLI': use/using-cli.md
- 'Library': use/using-utility-as-library.md