gradio/js/markdown
Dawood Khan 17fb116492
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>
2024-02-11 13:16:50 -05:00
..
shared Fixes gr.Markdown() does not render spaces around links correctly (#7361) 2024-02-11 13:16:50 -05:00
CHANGELOG.md chore: update versions (#7177) 2024-02-06 15:19:29 -08:00
Example.svelte Handle the case where examples is null for all components (#7192) 2024-01-29 16:51:22 -08:00
Index.svelte Add an option to enable header links for markdown (#6831) 2023-12-18 20:06:20 +00:00
Markdown.stories.svelte Fixes gr.Markdown() does not render spaces around links correctly (#7361) 2024-02-11 13:16:50 -05:00
Markdown.test.ts Fixes: Chatbot crashes when given empty url following http:// or https:// (#7138) 2024-01-24 23:01:38 -05:00
package.json chore: update versions (#7177) 2024-02-06 15:19:29 -08:00
README.md Version 4 development branch (#5498) 2023-10-31 04:46:02 +00:00

@gradio/markdown

<script>
    import { BaseMarkdown, MarkdownCode, BaseExample } from `@gradio/markdown`;
</script>

BaseMarkdown

	export let elem_id = "";
	export let elem_classes: string[] = [];
	export let visible = true;
	export let value: string;
	export let min_height = false;
	export let rtl = false;
	export let sanitize_html = true;
	export let line_breaks = false;
	export let latex_delimiters: {
		left: string;
		right: string;
		display: boolean;
	}[];

MarkdownCode

	export let chatbot = true;
	export let message: string;
	export let sanitize_html = true;
	export let latex_delimiters: {
		left: string;
		right: string;
		display: boolean;
	}[] = [];
	export let render_markdown = true;
	export let line_breaks = true;

BaseExample

	export let value: string;
	export let type: "gallery" | "table";
	export let selected = false;
	export let sanitize_html: boolean;
	export let line_breaks: boolean;
	export let latex_delimiters: {
		left: string;
		right: string;
		display: boolean;
	}[];