From ec0682e6795dd0aad9fb13d76df7c686b0b768f1 Mon Sep 17 00:00:00 2001 From: P M <10617122+pylipp@users.noreply.github.com> Date: Sat, 18 Feb 2023 18:14:49 +0100 Subject: [PATCH] Docs: Show clickable link instead of code-formatting --- docs/docs/databases/mysql.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/databases/mysql.mdx b/docs/docs/databases/mysql.mdx index e784321515b4c..651721602f0d2 100644 --- a/docs/docs/databases/mysql.mdx +++ b/docs/docs/databases/mysql.mdx @@ -22,7 +22,7 @@ Host: - For Docker running in OSX: `docker.for.mac.host.internal` Port: `3306` by default -One problem with `mysqlclient` is that it will fail to connect to newer MySQL databases using `caching_sha2_password` for authentication, since the plugin is not included in the client. In this case, you should use `[mysql-connector-python](https://pypi.org/project/mysql-connector-python/)` instead: +One problem with `mysqlclient` is that it will fail to connect to newer MySQL databases using `caching_sha2_password` for authentication, since the plugin is not included in the client. In this case, you should use [mysql-connector-python](https://pypi.org/project/mysql-connector-python/) instead: ``` mysql+mysqlconnector://{username}:{password}@{host}/{database}