Remove some unused function plans

This commit is contained in:
Nick Playfair 2025-06-12 19:08:46 +01:00
parent 7c7ec2338b
commit 8b65a52035
2 changed files with 0 additions and 13 deletions

View File

@ -58,13 +58,6 @@ async function createTable() {
input.addEventListener('change', handleUpload); input.addEventListener('change', handleUpload);
/* TODO /* TODO
// Format the HTML nicely and output to a pre code block
function displayMarkup() {
const tableCode = document.querySelector('table')!.outerHTML;
const markup = document.getElementById('markup') as HTMLElement;
markup.innerText = beautify(tableCode);
}
// Create a JSON object for Contentful // Create a JSON object for Contentful
function makeJSON(csvString: string) { function makeJSON(csvString: string) {
csv({ csv({

View File

@ -8,12 +8,6 @@ export async function printHTMLtable(
codeBlock.innerText = prettify(table.outerHTML); codeBlock.innerText = prettify(table.outerHTML);
} }
// no longer needed
// export function isJunk(element: Part): boolean {
// // Returns true if element is in the rejected list
// return rejectedParts.includes(element.Part);
// }
// TODO // TODO
/* /*