Skip to content

Commit 2237979

Browse files
author
Rtudo
committed
update
1 parent 1e7e030 commit 2237979

2 files changed

Lines changed: 34 additions & 12 deletions

File tree

mkdocs.yml

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ site_url: https://rtudo.github.io/ai/langgraph
66
site_description: A collection of technical write-ups for building ai agents with Gemini Models. Focus is on working code for langgraph within Google Ecosystem.
77
repo_url: https://github.com/rtudo/rtudo.github.io
88
repo_name: rtudo.github.io
9-
9+
copyright: Copyright © 2025 @ rtudo.github.io
1010
# Theme Configuration
1111
theme:
1212
name: material
@@ -25,7 +25,15 @@ theme:
2525
- search.share # Share search results
2626
- sticky.tabs # Tabs stick to the top on scroll
2727
- content.tooltips
28-
- content.icon.fontawesome # Enable Font Awesome icons
28+
# - navigation.footer
29+
- navigation.indexes
30+
- navigation.sections
31+
- navigation.top
32+
- navigation.tracking
33+
- search.highlight
34+
- search.share
35+
- search.suggest
36+
- toc.follow
2937
palette: # Color scheme
3038
- media: "(prefers-color-scheme: light)"
3139
scheme: default
@@ -82,18 +90,27 @@ markdown_extensions:
8290
- pymdownx.emoji:
8391
emoji_index: !!python/name:material.extensions.emoji.twemoji
8492
emoji_generator: !!python/name:material.extensions.emoji.to_svg
93+
# - footnotes
94+
- meta
8595

8696
# Plugins (Add extra functionality)
8797
plugins:
8898
- search # Built-in search
8999
- social # Generate social media cards
90100
- privacy # Privacy features (e.g., for embeds)
91-
- redirects:
92-
redirect_maps:
93-
'ai/langgraph': 'ai/langgraph/intro'
94-
'ai/': '404.html'
95-
'/': '404.html'
96-
101+
# - redirects:
102+
# redirect_maps:
103+
# 'ai/langgraph': 'ai/langgraph/intro'
104+
# 'ai/': '404.html'
105+
# '/': '404.html'
106+
- search
107+
- minify:
108+
minify_html: true
109+
minify_js: true
110+
minify_css: true
111+
htmlmin_opts:
112+
remove_comments: true
113+
cache_safe: true
97114
# Extra CSS/JavaScript (for custom styles if needed)
98115
extra_css:
99116
- ai/langgraph/stylesheets/extra.css # Optional: Create this file for custom CSS
@@ -106,10 +123,14 @@ extra_javascript:
106123
extra_templates:
107124
- custom_template.html # Optional: For highly custom overrides if custom_dir is set
108125

109-
# Copyright information
110-
copyright: Copyright © {{ now().year }} My Awesome Tutorials
126+
use_directory_urls: true
111127

112128
# Extra configuration for static files
113129
extra:
130+
generator: false
114131
static_verification_files:
115-
- google1934369b7ae8746a.html
132+
- google1934369b7ae8746a.html
133+
social:
134+
- icon: fontawesome/brands/github
135+
link: https://github.com/rtudo/rtudo.github.io
136+
name: GitHub

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ requests~=2.26
1414
mkdocs-material[imaging]>=9.5.0
1515
Pillow>=10.0.0
1616
cairosvg>=2.7.0
17-
mkdocs-redirects>=1.2.1
17+
mkdocs-redirects>=1.2.1
18+
mkdocs-minify-plugin

0 commit comments

Comments
 (0)