From 69f9f6e2cd780d06bf8f01d8db19a18c47582d0a Mon Sep 17 00:00:00 2001 From: Ivan Date: Thu, 23 Apr 2026 20:03:49 -0500 Subject: [PATCH] docs: update code block syntax in README and Raspberry Pi documentation to use bash --- README.md | 6 +++--- docs/meshchatx_on_raspberry_pi.md | 2 +- .../public/meshchatx-docs/meshchatx_on_raspberry_pi.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 82aeed8..83dbd83 100644 --- a/README.md +++ b/README.md @@ -206,19 +206,19 @@ Targets for `MESHCHATX_BUILD_TARGETS`: `all` (default), `wheel`, or `electron` ( Build: -```text +```bash docker build -f Dockerfile.build -t meshchatx-build:local . ``` Build only a wheel: -```text +```bash docker build -f Dockerfile.build --build-arg MESHCHATX_BUILD_TARGETS=wheel -t meshchatx-build:wheel . ``` Copy `/artifacts` from the finished image to the host: -```text +```bash cid=$(docker create meshchatx-build:local) docker cp "${cid}:/artifacts" ./meshchatx-artifacts docker rm "${cid}" diff --git a/docs/meshchatx_on_raspberry_pi.md b/docs/meshchatx_on_raspberry_pi.md index 730dc33..79156ea 100644 --- a/docs/meshchatx_on_raspberry_pi.md +++ b/docs/meshchatx_on_raspberry_pi.md @@ -110,7 +110,7 @@ meshchatx --headless --host 0.0.0.0 --port 8000 Then open: -```text +```bash http://:8000 ``` diff --git a/meshchatx/src/frontend/public/meshchatx-docs/meshchatx_on_raspberry_pi.md b/meshchatx/src/frontend/public/meshchatx-docs/meshchatx_on_raspberry_pi.md index c7d682c..1d23b6c 100644 --- a/meshchatx/src/frontend/public/meshchatx-docs/meshchatx_on_raspberry_pi.md +++ b/meshchatx/src/frontend/public/meshchatx-docs/meshchatx_on_raspberry_pi.md @@ -110,7 +110,7 @@ meshchatx --headless --host 0.0.0.0 --port 8000 Then open: -```text +```bash http://:8000 ```