From 81ced3c0a364a54244657d3bffc867d746ca6e4d Mon Sep 17 00:00:00 2001 From: exyi Date: Mon, 5 Oct 2020 20:20:25 +0000 Subject: [PATCH] Remove annoying paragraph that the task is open-data --- frontend/src/ksp-task-grabber.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/ksp-task-grabber.ts b/frontend/src/ksp-task-grabber.ts index 20974f6..ac134e2 100644 --- a/frontend/src/ksp-task-grabber.ts +++ b/frontend/src/ksp-task-grabber.ts @@ -111,6 +111,11 @@ function parseTask(startElementId: string, doc: HTMLDocument): TaskAssignmentDat let r = "" for (const e of elements) { + // hack: remove the paragraph with the matching text. Occurs in KSP-H, but is useless in this context. + if (e.innerText.trim().replace(/\s+/g, " ") == "Toto je praktická open-data úloha. V odevzdávacím systému si necháte vygenerovat vstupy a odevzdáte příslušné výstupy. Záleží jen na vás, jak výstupy vyrobíte.") { + continue; + } + fixAllLinks(e) r += e.outerHTML + "\n" }