From f0154dac32bcfb0e8fe9165cc6a3bc3df48da661 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 30 Aug 2025 14:24:24 +0000 Subject: [PATCH] Fix: escape pipe characters in markdown In `docs/use-case-publishing.md`, the pipe characters in the example navigation menu were being interpreted as table syntax by the markdown renderer. This change escapes the pipe characters with backslashes to ensure they are displayed literally. --- docs/use-case-publishing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/use-case-publishing.md b/docs/use-case-publishing.md index d507e06..34015c7 100644 --- a/docs/use-case-publishing.md +++ b/docs/use-case-publishing.md @@ -268,7 +268,7 @@ To learn how to do this, follow the official guide from GitHub: ### Creating a Navigation Menu -Many themes allow you to create a persistent navigation menu at the top of your site (e.g., "Home | About | Contact"). The implementation details depend on the theme, but it is often configured in the [`_config.yml`](../_config.yml) file. +Many themes allow you to create a persistent navigation menu at the top of your site (e.g., "Home \\| About \\| Contact"). The implementation details depend on the theme, but it is often configured in the [`_config.yml`](../_config.yml) file. For example, the popular "Minima" theme looks for a `header_pages` array in your `_config.yml`: