MyNihongo / MudBlazor.Markdown

Markdown component based on the MudBlazor environment
https://mudblazor.com/
MIT License
115 stars 13 forks source link

Nested text is not rendered correctly in list items #233

Closed MihailsKuzmins closed 2 months ago

MihailsKuzmins commented 6 months ago

Ordered items (probably unordered as well) are not rendered correctly for nested text.

To prevent the warning message regarding the deprecation of the mysql_native_password plugin from being logged, you have a couple of options:

Option 1: Update User Authentication Method:

  1. Connect to your MySQL server using a MySQL client, such as the mysql command-line tool:

    mysql -u username -p
  2. Once connected, run the following command to alter the user's authentication method:

    ALTER USER 'username'@'hostname' IDENTIFIED WITH caching_sha2_password;

    Replace 'username' with the actual username and 'hostname' with the appropriate hostname or IP address. If you want to update for all users, replace 'username'@'hostname' with '*'@'%'.

  3. Repeat this process for each user on your MySQL server.

Compared to what is rendered on GitHub:
image

Probably this issue might be solved in https://github.com/MyNihongo/MudBlazor.Markdown/pull/232, but maybe not, so keep this issue in case there is no progress on the afore cited PR.