From 974d7469beefcd6808ff30992d66c6a9b8225e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B4=95=E0=B5=81=E0=B4=9F=E0=B5=8D=E0=B4=9F=E0=B5=82?= =?UTF-8?q?=E0=B4=B8=E0=B5=8D?= Date: Thu, 1 Jan 2026 21:42:04 +0100 Subject: [PATCH] use GitHub flavoured markdown to emphasis warning and important sections of Readme (#3924) Co-authored-by: Shuchang Zheng --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 36d8c106..dea0c170 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,8 @@ await page.click("#download-button") ## Advanced Usage ### Control your own browser (Chrome) -> ⚠️ WARNING: Since [Chrome 136](https://developer.chrome.com/blog/remote-debugging-port), Chrome refuses any CDP connect to the browser using the default user_data_dir. In order to use your browser data, Skyvern copies your default user_data_dir to `./tmp/user_data_dir` the first time connecting to your local browser. ⚠️ +> [!WARNING] +> Since [Chrome 136](https://developer.chrome.com/blog/remote-debugging-port), Chrome refuses any CDP connect to the browser using the default user_data_dir. In order to use your browser data, Skyvern copies your default user_data_dir to `./tmp/user_data_dir` the first time connecting to your local browser. 1. Just With Python Code ```python @@ -316,7 +317,8 @@ skyvern stop server ``` 3. Navigate to `http://localhost:8080` in your browser to start using the UI -> **Important:** Only one Postgres container can run on port 5432 at a time. If you switch from the CLI-managed Postgres to Docker Compose, you must first remove the original container: +> [!Important] +> Only one Postgres container can run on port 5432 at a time. If you switch from the CLI-managed Postgres to Docker Compose, you must first remove the original container: > ```bash > docker rm -f postgresql-container > ```