-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
113 lines (101 loc) · 3.21 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
site_name: My Notes
site_url: https://nramc.github.io/my-notes/
# Repository
repo_name: nramc/my-notes
repo_url: https://github.com/nramc/my-notes
# Copyright
copyright: Copyright © 2024 Ramachandran Nellaiyappan
theme:
language: en
font:
text: Roboto
code: Roboto Mono
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
icon:
repo: fontawesome/brands/github
name: material
features:
- navigation.tabs
#- navigation.tabs.sticky
- navigation.path
- navigation.top
- header.autohide
- search.suggest
- search.share
#- navigation.footer
- content.code.copy
- content.code.select
extra_css:
- stylesheets/custom.css
plugins:
- search
- offline
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/nramc
- icon: fontawesome/brands/twitter
link: https://twitter.com/ram_n_74
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/ramachandran-nellaiyappan/
- icon: fontawesome/solid/paper-plane
link: mailto:ramachandrannellai@gmail.com
nav:
- Home: index.md
- Java:
- 'Email Template': 'java/email-templates.md'
- 'Java Notes': 'java/java-notes.md'
- Development:
- 'Validations': 'development/validations.md'
- 'Developer Workstation': 'development/workstation-tools.md'
- 'Local Development Essentials': 'development/local-development.md'
- Testing:
- 'Tools': 'testings/testing-tools.md'
- 'Automation tips': 'testings/automation-tips.md'
- Kubernetes:
- 'Logs Verification': 'kubernetes/logs-verification.md'
- 'Useful Commands': 'kubernetes/useful-commands.md'
- Improvements:
- 'Code Health': 'improvements/code-health-improvements.md'
- 'Documentation': 'improvements/documentation-improvements.md'
- 'Web Application': 'improvements/web-application-improvements.md'
- 'Data Quality': 'improvements/data-quality.md'
- Security:
- 'Secure Coding': 'security/secure-coding.md'
- 'Secure Password': 'security/password-security.md'
- 'Penetration Testing': 'security/penetration-testing.md'
- How-To:
- 'OpenRewrite Integration': 'how-to-articles/open-rewrite.md'
- 'New Java Application': 'how-to-articles/new-java-application-checklist.md'
- 'HTTP Client - IntelliJ Plugin': 'how-to-articles/http-client-intellij-plugin.md'
- Career:
- 'Professional Feedback': 'career/feedback-template.md'
- About: 'about.md'