Skip to content

Commit 76ee13f

Browse files
committed
fix: md table render
1 parent c299a3a commit 76ee13f

File tree

1 file changed

+28
-14
lines changed

1 file changed

+28
-14
lines changed

src/utils/text-tools.ts

+28-14
Original file line numberDiff line numberDiff line change
@@ -438,24 +438,38 @@ ${k.answer}
438438
* @returns The markdown string with HTML tables converted to markdown tables, or the original string if no conversions were made
439439
*/
440440
export function convertHtmlTablesToMd(mdString: string): string {
441-
// Check if there are any HTML tables in the string
442-
if (!mdString.includes('<table>')) {
443-
return mdString;
444-
}
445-
446441
try {
447-
// Regular expression to find HTML tables
448-
const tableRegex = /<table>([\s\S]*?)<\/table>/g;
449442
let result = mdString;
450-
let match;
451443

452-
// Process each table found
453-
while ((match = tableRegex.exec(mdString)) !== null) {
454-
const htmlTable = match[0];
455-
const convertedTable = convertSingleHtmlTableToMd(htmlTable);
444+
// First check for HTML tables
445+
if (mdString.includes('<table>')) {
446+
// Regular expression to find HTML tables
447+
const tableRegex = /<table>([\s\S]*?)<\/table>/g;
448+
let match;
449+
450+
// Process each table found
451+
while ((match = tableRegex.exec(mdString)) !== null) {
452+
const htmlTable = match[0];
453+
const convertedTable = convertSingleHtmlTableToMd(htmlTable);
454+
455+
if (convertedTable) {
456+
result = result.replace(htmlTable, convertedTable);
457+
}
458+
}
459+
}
460+
461+
// Then check for markdown tables inside code fences (including with the "html" language specifier)
462+
const codeFenceRegex = /```(?:html)?\s*\n(\s*\|\s*[^|]+\s*\|[\s\S]*?)\n\s*```/g;
463+
let codeFenceMatch;
464+
465+
while ((codeFenceMatch = codeFenceRegex.exec(mdString)) !== null) {
466+
const entireMatch = codeFenceMatch[0];
467+
const tableContent = codeFenceMatch[1];
456468

457-
if (convertedTable) {
458-
result = result.replace(htmlTable, convertedTable);
469+
// Check if this is actually a markdown table by looking for the separator row
470+
if (tableContent.includes('\n| ---') || tableContent.includes('\n|---')) {
471+
// It's already a markdown table, so just remove the code fence
472+
result = result.replace(entireMatch, tableContent);
459473
}
460474
}
461475

0 commit comments

Comments
 (0)