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
@@ -516,7 +516,7 @@ const renderMarkdown = (text: string, onImageClick: (url: string) => void) => {
return;
}
const ulMatch = trimmed.match(/^[-*]\s*(.*)/);
const ulMatch = trimmed.match(/^[-*]\s+(.*)/);
if (ulMatch) {
isOrderedList = false;
listItems.push(<li key={idx} className="leading-relaxed pl-1">{parseInline(ulMatch[1])}</li>);