forked from kasem-sm/SlimeKT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
84 lines (79 loc) · 2.68 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
# Project information
site_name: "SlimeKT"
site_description: "Kotlin stack Open source project"
site_author: "kasem-sm"
site_url: "https://kasem-sm.github.io/SlimeKT/"
edit_uri: "tree/dev/docs/"
docs_dir: docs
# Repository
repo_name: "SlimeKT"
repo_url: "https://github.com/kasem-sm/SlimeKT"
# Navigation
nav:
- "API":
- "Authentication Routes":
- "Login/Register Route": api/auth/post_login_register.md
- "Get Random Author": api/auth/get_random_user.md
- "Get Authentication Status": api/auth/get_authentication_status.md
- "Article Routes":
- "Get Daily Read Article": api/article/get_daily_read_article.md
- "Get Article By Id": api/article/get_article_by_id.md
- "Get All Articles": api/article/get_all_articles.md
- "Get Articles In Explore": api/article/get_articles_in_explore.md
- "Post New Article": api/article/post_article.md
- "Topic Routes":
- "Get All Topics": api/topics/get_all_topics.md
- "Get Topic By Id": api/topics/get_topic_by_id.md
- "Subscription Routes":
- "Subscribe To Topic": api/subscribption/subscribe_if_not.md
- "Get All Subscribed Topics": api/subscribption/get_all_subscribed_topics.md
- "Get All Explore Topics": api/subscribption/get_all_explore_topics.md
- "Core Features":
- "Authentication": android/features/ft_authentication.md
- "Article": android/features/ft_article.md
- "Topics": android/features/ft_topics.md
- "Miscellaneous": android/features/misc.md
- "Modules & Project Structure":
- "Why Modularization": modules/why_modularization.md
- "Feature Modules": modules/feature/feature_module_structure.md
- "Java/Kotlin Modules": modules/java_kotlin/java_kotlin_modules.md
- "Android Modules": modules/android/ui_modules.md
- "Guide":
- "App Architecture": guide/app_architecture.md
- "View-State": guide/view_state_construction.md
- "Observable Loader": guide/observable_loader.md
- "Interactors": guide/interactors.md
- "Testing Status": tests/status.md
- "End Notes": end_notes.md
theme:
logo: assets/logo.png
favicon: assets/ico.png
name: "material"
language: "en"
palette:
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: "deep orange"
accent: "deep orange"
font:
text: "Roboto"
code: "Fira Code"
features:
- navigation.sections
- navigation.top
# Extensions
markdown_extensions:
- admonition
- attr_list
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.details