🐛 Fix some stupid bugs

This commit is contained in:
2025-11-22 18:22:53 +08:00
parent af0a2ff493
commit fd6e9c9780
4 changed files with 23 additions and 15 deletions

View File

@@ -18,6 +18,7 @@ public class MarkdownConverter
var procMarkdown = markdown.Replace("solian://files/", "/drive/files");
return string.IsNullOrEmpty(procMarkdown)
? string.Empty
: Markdown.ToHtml(markdown, softBreaks ? _pipelineSoftBreak : _pipeline);
: Markdown.ToHtml(procMarkdown, softBreaks ? _pipelineSoftBreak : _pipeline);
}
}
}