Skip to content

Commit 3b40e02

Browse files
committed
feat: SEO enhancements
1 parent 67769cb commit 3b40e02

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Diff for: generate.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rm -rf etc .circleci .editorconfig .github .mvn checkstyle-suppressions.xml CONT
1818
find . -maxdepth 2 -type d -exec bash -c 'cd "{}" && pwd && rm -rf src pom.xml *.ucls *.puml .gitignore' \;
1919

2020
rm -vf README.md
21-
$ROOT_DIR/index.sh "en" "Design Pattern Catalog"
21+
$ROOT_DIR/index.sh "en" "Design Pattern Catalog | Java Design Patterns" "Catalog of Java Design Patterns for Developers | Java Design Patterns" "Discover the full list of Java design patterns. This comprehensive guide provides you with all the information you need to master pattern implementation in your Java applications."
2222

2323
# Setup java-design-patterns - localizations
2424
languages=( zh ko es )

Diff for: index.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
echo "---" >> README.md
22
echo "language: $1" >> README.md
33
echo "title: $2" >> README.md
4+
echo "shortTitle: $3" >> README.md
5+
echo "description: $4" >> README.md
46
echo "---" >> README.md
57
echo "" >> README.md
68

Diff for: src/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
blog: false
33
home: true
44
icon: home
5-
title: Java Design Patterns
5+
title: "Explore, Learn, and Master Industry-Standard Patterns"
6+
shortTitle: Java Design Patterns
7+
description: "Explore the comprehensive world of Java design patterns. Learn key patterns that every Java developer should know and master to build more robust and scalable applications."
68
heroImage: /coffee.svg
79
heroText: Software design patterns, principles, and snippets
810
tagline: The best designers will use many design patterns that dovetail and intertwine to produce a greater whole --Erich Gamma

0 commit comments

Comments
 (0)