adding unit tests and fixing the parse function
This commit is contained in:
parent
ff622739b7
commit
ee8a097252
@ -0,0 +1,128 @@
|
|||||||
|
import { parseTablesToMarkdown, convertTableElementToMarkdown, convertTableRowElementToMarkdown, createMarkdownDividerRow } from '../parseTable';
|
||||||
|
import cheerio from 'cheerio';
|
||||||
|
|
||||||
|
describe('parseTablesToMarkdown', () => {
|
||||||
|
it('converts a simple HTML table to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><th>Header 1</th><th>Header 2</th></tr>
|
||||||
|
<tr><td>Row 1 Col 1</td><td>Row 1 Col 2</td></tr>
|
||||||
|
<tr><td>Row 2 Col 1</td><td>Row 2 Col 2</td></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>| Header 1 | Header 2 |\n| --- | --- |\n| Row 1 Col 1 | Row 1 Col 2 |\n| Row 2 Col 1 | Row 2 Col 2 |</div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with a single row to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><th>Header 1</th><th>Header 2</th></tr>
|
||||||
|
<tr><td>Row 1 Col 1</td><td>Row 1 Col 2</td></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>| Header 1 | Header 2 |\n| --- | --- |\n| Row 1 Col 1 | Row 1 Col 2 |</div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with a single column to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><th>Header 1</th></tr>
|
||||||
|
<tr><td>Row 1 Col 1</td></tr>
|
||||||
|
<tr><td>Row 2 Col 1</td></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>| Header 1 |\n| --- |\n| Row 1 Col 1 |\n| Row 2 Col 1 |</div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with a single cell to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><th>Header 1</th></tr>
|
||||||
|
<tr><td>Row 1 Col 1</td></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>| Header 1 |\n| --- |\n| Row 1 Col 1 |</div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with no header to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><td>Row 1 Col 1</td><td>Row 1 Col 2</td></tr>
|
||||||
|
<tr><td>Row 2 Col 1</td><td>Row 2 Col 2</td></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>| Row 1 Col 1 | Row 1 Col 2 |\n| Row 2 Col 1 | Row 2 Col 2 |</div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with no rows to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div></div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with no cells to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div></div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with no columns to Markdown', async () => {
|
||||||
|
const html = `
|
||||||
|
<table>
|
||||||
|
<tr><th></th></tr>
|
||||||
|
</table>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div></div>`;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table with no table to Markdown', async () => {
|
||||||
|
const html = ``;
|
||||||
|
const expectedMarkdown = ``;
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('converts a table inside of a bunch of html noise', async () => {
|
||||||
|
const html = `
|
||||||
|
<div>
|
||||||
|
<p>Some text before</p>
|
||||||
|
<table>
|
||||||
|
<tr><td>Row 1 Col 1</td><td>Row 1 Col 2</td></tr>
|
||||||
|
<tr><td>Row 2 Col 1</td><td>Row 2 Col 2</td></tr>
|
||||||
|
</table>
|
||||||
|
<p>Some text after</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
const expectedMarkdown = `<div>
|
||||||
|
<p>Some text before</p>
|
||||||
|
<div>| Row 1 Col 1 | Row 1 Col 2 |
|
||||||
|
| Row 2 Col 1 | Row 2 Col 2 |</div>
|
||||||
|
<p>Some text after</p>
|
||||||
|
</div>`;
|
||||||
|
|
||||||
|
const markdown = await parseTablesToMarkdown(html);
|
||||||
|
expect(markdown).toBe(expectedMarkdown);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
@ -1,66 +1,75 @@
|
|||||||
import cheerio from "cheerio";
|
import cheerio, { CheerioAPI } from "cheerio";
|
||||||
|
|
||||||
export const parseTablesToMarkdown = async (html: string) => {
|
interface Replacement {
|
||||||
let soup = cheerio.load(html, {
|
start: number;
|
||||||
|
end: number;
|
||||||
|
markdownTable: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const parseTablesToMarkdown = async (html: string): Promise<string> => {
|
||||||
|
const soup: CheerioAPI = cheerio.load(html, {
|
||||||
xmlMode: true,
|
xmlMode: true,
|
||||||
withStartIndices: true,
|
withStartIndices: true,
|
||||||
withEndIndices: true
|
withEndIndices: true
|
||||||
});
|
});
|
||||||
let tables = soup("table");
|
let tables = soup("table");
|
||||||
let replacements = [];
|
let replacements: Replacement[] = [];
|
||||||
|
|
||||||
|
|
||||||
if (tables.length) {
|
if (tables.length) {
|
||||||
for (const table of Array.from(tables)) {
|
tables.each((_, tableElement) => {
|
||||||
const start = table.startIndex;
|
const start: number = tableElement.startIndex;
|
||||||
const end = table.endIndex;
|
const end: number = tableElement.endIndex + 1; // Include the closing tag properly
|
||||||
const markdownTable = await convertTableElementToMarkdown(cheerio.load(table));
|
let markdownTable: string = convertTableElementToMarkdown(cheerio.load(tableElement));
|
||||||
|
const isTableEmpty: boolean = markdownTable.replace(/[|\- \n]/g, '').length === 0;
|
||||||
|
if (isTableEmpty) {
|
||||||
|
markdownTable = '';
|
||||||
|
}
|
||||||
|
console.log({markdownTable})
|
||||||
replacements.push({ start, end, markdownTable });
|
replacements.push({ start, end, markdownTable });
|
||||||
};
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
replacements.sort((a, b) => b.start - a.start);
|
replacements.sort((a, b) => b.start - a.start);
|
||||||
|
|
||||||
let modifiedHtml = html;
|
let modifiedHtml: string = html;
|
||||||
for (const { start, end, markdownTable } of replacements) {
|
replacements.forEach(({ start, end, markdownTable }) => {
|
||||||
modifiedHtml = modifiedHtml.slice(0, start) + `<div>${markdownTable}</div>` + modifiedHtml.slice(end);
|
modifiedHtml = modifiedHtml.slice(0, start) + `<div>${markdownTable}</div>` + modifiedHtml.slice(end);
|
||||||
}
|
|
||||||
|
|
||||||
return modifiedHtml;
|
|
||||||
}
|
|
||||||
|
|
||||||
const convertTableElementToMarkdown = async (tableSoup) => {
|
|
||||||
const rows = [];
|
|
||||||
const trEls = tableSoup("tr");
|
|
||||||
|
|
||||||
trEls.each((i, tr) => {
|
|
||||||
const markdownRow = convertTableRowElementToMarkdown(cheerio.load(tr), i);
|
|
||||||
rows.push(markdownRow);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return rows.join('\n');
|
return modifiedHtml.trim();
|
||||||
}
|
};
|
||||||
|
|
||||||
function convertTableRowElementToMarkdown(rowSoup, rowNumber) {
|
export const convertTableElementToMarkdown = (tableSoup: CheerioAPI): string => {
|
||||||
const cells = [];
|
let rows: string[] = [];
|
||||||
const cellEls = rowSoup("td, th");
|
let headerRowFound: boolean = false;
|
||||||
|
tableSoup("tr").each((i, tr) => {
|
||||||
cellEls.each((i, cell) => {
|
const cells: string = tableSoup(tr).find("th, td").map((_, cell) => {
|
||||||
let cellText = cheerio.load(cell).text();
|
let cellText: string = tableSoup(cell).text().trim();
|
||||||
cellText = cellText.replace(/\n/g, " ").trim();
|
if (tableSoup(cell).is("th") && !headerRowFound) {
|
||||||
cells.push(cellText + ' |');
|
headerRowFound = true;
|
||||||
|
}
|
||||||
|
return ` ${cellText} |`;
|
||||||
|
}).get().join("");
|
||||||
|
if (cells) {
|
||||||
|
rows.push(`|${cells}`);
|
||||||
|
}
|
||||||
|
if (headerRowFound && i === 0) { // Header row
|
||||||
|
rows.push(createMarkdownDividerRow(tableSoup(tr).find("th, td").length));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let row = '| ' + cells.join(" ");
|
return rows.join('\n').trim();
|
||||||
|
};
|
||||||
|
|
||||||
if (rowNumber === 0) {
|
export function convertTableRowElementToMarkdown(rowSoup: CheerioAPI, rowNumber: number): string {
|
||||||
row += '\n' + createMarkdownDividerRow(cellEls.length);
|
const cells: string = rowSoup("td, th").map((_, cell) => {
|
||||||
}
|
let cellText: string = rowSoup(cell).text().trim();
|
||||||
|
return ` ${cellText} |`;
|
||||||
|
}).get().join("");
|
||||||
|
|
||||||
return row;
|
return `|${cells}`;
|
||||||
}
|
};
|
||||||
|
|
||||||
function createMarkdownDividerRow(cellCount) {
|
export function createMarkdownDividerRow(cellCount: number): string {
|
||||||
const dividerCells = Array(cellCount).fill('--- |');
|
return '| ' + Array(cellCount).fill('---').join(' | ') + ' |';
|
||||||
return '| ' + dividerCells.join(" ");
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user