File size: 876 Bytes
595d052 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<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>
|