-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmkdocs.yml
63 lines (57 loc) · 1.47 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
site_name: Android App Linking
site_url: https://github.com/SimonMarquis/Android-App-Linking
repo_name: Android App Linking
repo_url: https://github.com/SimonMarquis/Android-App-Linking
edit_uri: edit/master/docs/
site_description: "The ultimate developer guide to Android application linking methods"
site_author: Simon Marquis
remote_branch: gh-pages
copyright: 'Copyright © 2023 Simon Marquis'
theme:
name: material
logo: assets/logo.png
icon:
repo: fontawesome/brands/github
palette:
primary: black
features:
- content.action.edit
- content.action.view
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.instant
- navigation.indexes
- navigation.top
- navigation.tracking
- search.highlight
- toc.follow
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- tables
- toc:
permalink: true
plugins:
- search
extra_css:
- stylesheets/extra.css
nav:
- '📋 Overview': index.md
- '🔗 Methods':
- 'Web url': web-url.md
- 'App Links': app-links.md
- 'Custom scheme': custom-scheme.md
- 'Intent scheme': intent-scheme.md
- 'App scheme': app-scheme.md
- 'Firebase Dynamic Links': firebase-dynamic-links.md
- 'Play Store url': play-store-url.md
- 'Market scheme': market-scheme.md
- '💎 Misc': misc.md