You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logos in the README.md have underscores near them, which aesthetically would look better without them.
Possible Implementation
I managed to achieve the same result by using Markdown syntax instead of HTML for embedding the images with links. Here's how I did it:
Before:
<ahref="https://www.example.com"target="_blank"rel="noreferrer"> <imgsrc="logo_url"alt="logo_with_underscore"width="40"height="40"/> </a>
After:
[<imgsrc="logo_url"alt="logo without underscore"width="40"height="40"/>](https://www.example.com)
By using Markdown syntax, I was able to remove the underscores from the alt text of the images, maintaining the href functionality and the desired dimension of the icon
The text was updated successfully, but these errors were encountered:
Description
The logos in the README.md have underscores near them, which aesthetically would look better without them.
Possible Implementation
I managed to achieve the same result by using Markdown syntax instead of HTML for embedding the images with links. Here's how I did it:
By using Markdown syntax, I was able to remove the underscores from the alt text of the images, maintaining the href functionality and the desired dimension of the icon
The text was updated successfully, but these errors were encountered: