From 55dba8966711d09b924a8763268630b5c43141d3 Mon Sep 17 00:00:00 2001 From: Linus Holtkamp Date: Sun, 30 Aug 2026 12:08:39 +0200 Subject: [PATCH] docs: fix accidental ordered-list rendering in develop-with-containers '1)' and '2)' were meant as an inline parenthetical enumeration within one sentence. A prior edit addressing #24394 reflowed this paragraph across multiple lines, which put '1)' (originally on the same line as the rest of the sentence) at the start of a line - and per the CommonMark spec, both '.' and ')' after a digit at the start of a line are valid ordered-list markers. This caused '1)' to render as an actual list item while '2)', still mid-line, stayed as plain text - an inconsistent, unintended result. Restored the sentence to a single paragraph, matching the pre-#24394 formatting, keeping the additional clarifying text that #24394 added. --- content/get-started/introduction/develop-with-containers.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/content/get-started/introduction/develop-with-containers.md b/content/get-started/introduction/develop-with-containers.md index f3fd5d8f4dd6..77f1626ad4ae 100644 --- a/content/get-started/introduction/develop-with-containers.md +++ b/content/get-started/introduction/develop-with-containers.md @@ -153,11 +153,7 @@ Before you move on, take a moment and reflect on what happened here. Within a fe - Start a complete development project with zero installation effort. The containerized environment provided the development environment, ensuring you have everything you need. You didn't have to install Node, MySQL, or any of the other dependencies directly on your machine. All you needed was Docker Desktop and a code editor. -- Make changes and see them immediately. This was made possible because - 1. the processes running in each container are watching and responding to - file changes and 2) the files in your local project directory are shared - with the containerized environment, so edits you make locally are - automatically synced to the containers. +- Make changes and see them immediately. This was made possible because 1) the processes running in each container are watching and responding to file changes and 2) the files in your local project directory are shared with the containerized environment, so edits you make locally are automatically synced to the containers. Docker Desktop enables all of this and so much more. Once you start thinking with containers, you can create almost any environment and easily share it with your team.