Fixes gr.Markdown() does not render spaces around links correctly (#7361)

* fix

* remove console

* add changeset

* fix

* storybook

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
Dawood Khan 2024-02-11 13:16:50 -05:00 committed by GitHub
parent bb4126cc24
commit 17fb116492
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/markdown": patch
"gradio": patch
---
fix:Fixes gr.Markdown() does not render spaces around links correctly

View File

@ -62,3 +62,11 @@ in two separate lines.`
latex_delimiters: [{ left: "$", right: "$", display: false }]
}}
/>
<Story
name="Markdown with header links"
args={{
value: "# Visit [Gradio](https://gradio.app) for more information",
header_links: true
}}
/>

View File

@ -169,5 +169,6 @@
span :global(h6) {
display: flex;
align-items: center;
white-space-collapse: break-spaces;
}
</style>