fix: max lines for SB code snippets

pull/1268/head
patak 2023-01-17 12:47:52 +01:00
rodzic db9fb61134
commit 8a74e1abef
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -16,12 +16,15 @@ interface Meta {
project?: string
}
// Protect against long code snippets
const maxLines = 20
const meta = $computed(() => {
const { description } = props.card
const meta = description.match(/.+\n\nCode Snippet from (.+), lines ([\w-]+)\n\n(.+)/s)
const file = meta?.[1]
const lines = meta?.[2].replaceAll('N', '')
const code = meta?.[3]
const code = meta?.[3].split('\n').slice(0, maxLines).join('\n')
const project = props.card.title?.replace(' - StackBlitz', '')
const info = $ref<Meta>({
file,