frontend / 6.0.0-dev.5 /markdown /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
27b0d61 verified
<script lang="ts">
import { MarkdownCode } from "@gradio/markdown-code";
export let value: string | null;
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;
}[];
function truncate_text(text: string | null, max_length = 60): string {
if (!text) return "";
const str = String(text);
if (str.length <= max_length) return str;
return str.slice(0, max_length) + "...";
}
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
class="prose"
>
<MarkdownCode
message={truncate_text(value)}
{latex_delimiters}
{sanitize_html}
{line_breaks}
chatbot={false}
/>
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>