@@ -438,24 +438,38 @@ ${k.answer}
438
438
* @returns The markdown string with HTML tables converted to markdown tables, or the original string if no conversions were made
439
439
*/
440
440
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
-
446
441
try {
447
- // Regular expression to find HTML tables
448
- const tableRegex = / < t a b l e > ( [ \s \S ] * ?) < \/ t a b l e > / g;
449
442
let result = mdString ;
450
- let match ;
451
443
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 = / < t a b l e > ( [ \s \S ] * ?) < \/ t a b l e > / 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 = / ` ` ` (?: h t m l ) ? \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 ] ;
456
468
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 ) ;
459
473
}
460
474
}
461
475
0 commit comments