From 3a09e8b251b1c6af6bb2f678b2caca199cbc6214 Mon Sep 17 00:00:00 2001 From: himabindu-1614 Date: Sat, 8 Nov 2025 05:29:36 +0530 Subject: [PATCH] docs: add UTF-8 support guide (#7091) --- docs/utf8-support.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docs/utf8-support.md diff --git a/docs/utf8-support.md b/docs/utf8-support.md new file mode 100644 index 0000000000..729a0ad19c --- /dev/null +++ b/docs/utf8-support.md @@ -0,0 +1,21 @@ +# Enabling UTF-8 Support in Cortex + +This guide explains how to enable UTF-8 support in Cortex. + +## Why UTF-8 Support? +UTF-8 ensures that all Unicode characters are correctly stored and displayed. This is essential for internationalization and working with non-ASCII data. + +## Prerequisites +- Cortex v1.x or higher +- Environment set up for Cortex +- YAML/JSON configuration files + +## Configuration Steps + +1. Open your Cortex configuration file (e.g., `cortex-config.yaml`). +2. Add or update the encoding section: + +```yaml +server: + encoding: UTF-8 +