(content: string)
| 534 | } |
| 535 | |
| 536 | private parseDescription(content: string): string { |
| 537 | const match = content.match(/description:\s*"([^"]+)"/); |
| 538 | if (match) return match[1]; |
| 539 | const match2 = content.match(/description:\s*'([^']+)'/); |
| 540 | if (match2) return match2[1]; |
| 541 | return ""; |
| 542 | } |
| 543 | } |