This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 29d07bbf41 🔄 synced local 'docs/guide/' with remote 'docs/guide/'
29d07bbf41 is described below

commit 29d07bbf414ecb44d02c29c82e9ac2c1776d785d
Author: chaokunyang <[email protected]>
AuthorDate: Tue Feb 10 07:41:52 2026 +0000

    🔄 synced local 'docs/guide/' with remote 'docs/guide/'
---
 docs/guide/cpp/custom-serializers.md     |  8 ++++----
 docs/guide/cpp/polymorphism.md           | 16 ++++++++--------
 docs/guide/java/field-configuration.md   |  6 +++---
 docs/guide/python/field-configuration.md |  6 +++---
 docs/guide/rust/field-configuration.md   |  6 +++---
 docs/guide/xlang/field-type-meta.md      |  6 +++---
 6 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/docs/guide/cpp/custom-serializers.md 
b/docs/guide/cpp/custom-serializers.md
index b66c8e2b3c..8441537152 100644
--- a/docs/guide/cpp/custom-serializers.md
+++ b/docs/guide/cpp/custom-serializers.md
@@ -365,7 +365,7 @@ static MyType read_data(ReadContext &ctx) {
 
 ## Related Topics
 
-- [Type Registration](type_registration) - Registering serializers
-- [Basic Serialization](basic_serialization) - Using FORY_STRUCT macro
-- [Schema Evolution](schema_evolution) - Compatible mode
-- [Cross-Language](cross_language) - Cross-language serialization
+- [Type Registration](type-registration.md) - Registering serializers
+- [Basic Serialization](basic-serialization.md) - Using FORY_STRUCT macro
+- [Schema Evolution](schema-evolution.md) - Compatible mode
+- [Cross-Language](cross-language.md) - Cross-language serialization
diff --git a/docs/guide/cpp/polymorphism.md b/docs/guide/cpp/polymorphism.md
index c52d385fb2..97f5bad11d 100644
--- a/docs/guide/cpp/polymorphism.md
+++ b/docs/guide/cpp/polymorphism.md
@@ -184,7 +184,7 @@ FORY_FIELD_CONFIG(Zoo,
 );
 ```
 
-See [Field Configuration](field_configuration) for complete details on 
`fory::nullable`, `fory::ref`, and other field-level options
+See [Field Configuration](field-configuration.md) for complete details on 
`fory::nullable`, `fory::ref`, and other field-level options
 
 ## std::unique_ptr Polymorphism
 
@@ -247,7 +247,7 @@ assert(dynamic_cast<Dog*>(decoded.registry["pet1"].get()) 
!= nullptr);
 ## Reference Tracking
 
 Reference tracking for `std::shared_ptr` works the same with polymorphic types.
-See [Supported Types](supported_types) for details and examples.
+See [Supported Types](supported-types.md) for details and examples.
 
 ## Nested Polymorphism Depth Limit
 
@@ -321,7 +321,7 @@ struct Pet {
 FORY_STRUCT(Pet, primary, optional);
 ```
 
-See [Field Configuration](field_configuration) for more details.
+See [Field Configuration](field-configuration.md) for more details.
 
 ## Combining Polymorphism with Other Features
 
@@ -473,8 +473,8 @@ if (!decoded_result.ok()) {
 
 ## Related Topics
 
-- [Type Registration](type_registration) - Registering types for serialization
-- [Field Configuration](field_configuration) - Field-level metadata and options
-- [Supported Types](supported_types) - Smart pointers and collections
-- [Configuration](configuration) - `max_dyn_depth` and other settings
-- [Basic Serialization](basic_serialization) - Core serialization concepts
+- [Type Registration](type-registration.md) - Registering types for 
serialization
+- [Field Configuration](field-configuration.md) - Field-level metadata and 
options
+- [Supported Types](supported-types.md) - Smart pointers and collections
+- [Configuration](configuration.md) - `max_dyn_depth` and other settings
+- [Basic Serialization](basic-serialization.md) - Core serialization concepts
diff --git a/docs/guide/java/field-configuration.md 
b/docs/guide/java/field-configuration.md
index 2a4f448fbb..20a82c197e 100644
--- a/docs/guide/java/field-configuration.md
+++ b/docs/guide/java/field-configuration.md
@@ -600,6 +600,6 @@ public class User {
 
 ## Related Topics
 
-- [Basic Serialization](basic_serialization) - Getting started with Fory 
serialization
-- [Schema Evolution](schema_evolution) - Compatible mode and schema evolution
-- [Cross-Language](cross_language) - Interoperability with Python, Rust, C++, 
Go
+- [Basic Serialization](basic-serialization.md) - Getting started with Fory 
serialization
+- [Schema Evolution](schema-evolution.md) - Compatible mode and schema 
evolution
+- [Cross-Language](cross-language.md) - Interoperability with Python, Rust, 
C++, Go
diff --git a/docs/guide/python/field-configuration.md 
b/docs/guide/python/field-configuration.md
index 07801a99ac..4879133069 100644
--- a/docs/guide/python/field-configuration.md
+++ b/docs/guide/python/field-configuration.md
@@ -487,6 +487,6 @@ class User:
 
 ## Related Topics
 
-- [Basic Serialization](basic_serialization) - Getting started with Fory 
serialization
-- [Schema Evolution](schema_evolution) - Compatible mode and schema evolution
-- [Cross-Language](cross_language) - Interoperability with Java, Rust, C++, Go
+- [Basic Serialization](basic-serialization.md) - Getting started with Fory 
serialization
+- [Schema Evolution](schema-evolution.md) - Compatible mode and schema 
evolution
+- [Cross-Language](cross-language.md) - Interoperability with Java, Rust, C++, 
Go
diff --git a/docs/guide/rust/field-configuration.md 
b/docs/guide/rust/field-configuration.md
index 1d2080a52c..0f9e1be2ef 100644
--- a/docs/guide/rust/field-configuration.md
+++ b/docs/guide/rust/field-configuration.md
@@ -455,6 +455,6 @@ struct User {
 
 ## Related Topics
 
-- [Basic Serialization](basic_serialization) - Getting started with Fory 
serialization
-- [Schema Evolution](schema_evolution) - Compatible mode and schema evolution
-- [Cross-Language](cross_language) - Interoperability with Java, C++, Go, 
Python
+- [Basic Serialization](basic-serialization.md) - Getting started with Fory 
serialization
+- [Schema Evolution](schema-evolution.md) - Compatible mode and schema 
evolution
+- [Cross-Language](cross-language.md) - Interoperability with Java, C++, Go, 
Python
diff --git a/docs/guide/xlang/field-type-meta.md 
b/docs/guide/xlang/field-type-meta.md
index 6b3e5b64f2..1c6880c857 100644
--- a/docs/guide/xlang/field-type-meta.md
+++ b/docs/guide/xlang/field-type-meta.md
@@ -296,6 +296,6 @@ FORY_FIELD_CONFIG(Zoo,
 
 ## Related Topics
 
-- [Field Nullability](field_nullability) - Controlling null handling for fields
-- [Field Reference Tracking](reference_tracking) - Managing shared/circular 
references
-- [Type Mapping](../../specification/xlang_type_mapping) - Cross-language type 
compatibility
+- [Field Nullability](field-nullability.md) - Controlling null handling for 
fields
+- [Field Reference Tracking](field-reference-tracking.md) - Managing 
shared/circular references
+- [Type Mapping](../../specification/xlang_type_mapping.md) - Cross-language 
type compatibility


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to