diff --git a/assets/js/md/handlers.js b/assets/js/md/handlers.js index eae9ceb..2ffdadc 100644 --- a/assets/js/md/handlers.js +++ b/assets/js/md/handlers.js @@ -72,8 +72,10 @@ const renderHTML = async () => { html: true, }); const markdownInput = document.getElementById("markdown-input"); + const mkInputAr = markdownInput.value.replaceAll("ARS", "") + const mkInputAr2 = mkInputAr.replaceAll("ARE", ""); const htmlOutput = document.getElementById("html-output"); - const newHtml = md.render(markdownInput.value); + const newHtml = md.render(mkInputAr2); htmlOutput.innerHTML = newHtml; updateRender(); saveMd(); diff --git a/assets/zip/ling-200-textbook.zip b/assets/zip/ling-200-textbook.zip new file mode 100644 index 0000000..1059fb7 Binary files /dev/null and b/assets/zip/ling-200-textbook.zip differ