fixes Markdown & Apex Globe
Deploy to VPS / deploy (push) Has been cancelled

This commit is contained in:
2026-04-16 12:45:48 -05:00
parent 21d0f9ee1c
commit 9d0ec57d7c
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ const renderMarkdown = (text: string) => {
return;
}
const ulMatch = trimmed.match(/^[-*]\s*(.*)/);
const ulMatch = trimmed.match(/^[-*]\s+(.*)/);
if (ulMatch) { isOrderedList = false; listItems.push(<li key={idx} className="leading-relaxed pl-2">{parseInline(ulMatch[1])}</li>); return; }
const olMatch = trimmed.match(/^\d+\.\s*(.*)/);