From effc4b62b6cf27cd052097a86883b90570a33977 Mon Sep 17 00:00:00 2001 From: Mikhail Laptev Date: Wed, 7 Jan 2026 14:35:55 +0000 Subject: [PATCH] docs: adding an extra space to render the page correctly with mkdocs I've been looking into details on custom codes and noticed that the there is an issue with rendering bullet points on the following page: https://apache.github.io/cassandra-java-driver/4.19.0/core/custom_codecs/ --- manual/core/custom_codecs/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/manual/core/custom_codecs/README.md b/manual/core/custom_codecs/README.md index f3b7be1e3d9..ae42a8637ec 100644 --- a/manual/core/custom_codecs/README.md +++ b/manual/core/custom_codecs/README.md @@ -33,6 +33,7 @@ Define custom Java to CQL mappings. (MutableCodecRegistry) session.getContext().getCodecRegistry(); registry.register(myCodec); ``` + * using a codec: * if already registered: `row.get("columnName", MyCustomType.class)` * otherwise: `row.get("columnName", myCodec)`