From bddf5222413b9cbd854856647632c699ed104806 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sat, 21 Jun 2025 12:46:35 +0200 Subject: [PATCH] docs: clarify browser command --- docs/README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index 29c72c5e3..763790e28 100644 --- a/docs/README.md +++ b/docs/README.md @@ -51,8 +51,13 @@ cd docs/_build/html python3 -m http.server 8080 ``` -10. Open the documentation in your browser: +10. Open the documentation in your browser. Depending on your platform use `open` (macOS), `xdg-open` (Linux), or `start` (Windows): ```bash -open http://localhost:8080/en -open http://localhost:8080/ru +open http://localhost:8080/en # macOS +xdg-open http://localhost:8080/en # Linux +start http://localhost:8080/en # Windows + +open http://localhost:8080/ru # macOS +xdg-open http://localhost:8080/ru # Linux +start http://localhost:8080/ru # Windows ```