-
I try to enable markdown content on a site currently using only HTML. Website is https://mi-hol.github.io/Engenia/# The original html file is referenced by: I want to replace it with https://github.com/mi-hol/Engenia/blob/main/01_General/05_AltParts/AltParts.md but all my attempts failed so far. I've tried below syntax:
but get errors: Engenia/:1066 Uncaught SyntaxError: Unexpected token '<' (at Engenia/:1066:35) Engenia/:960 Uncaught ReferenceError: menu1 is not defined Any hint how to correct? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Leave this part as it is, then replace AltParts.html with: <HTML>
<HEAD>
<TITLE>Links to Alternative Parts</TITLE>
<link rel="shortcut icon" href="../../EngeniaIcon.ico">
<script
type="module"
src="https://cdn.jsdelivr.net/gh/zerodevx/zero-md@2/dist/zero-md.min.js"
></script>
</HEAD>
<BODY BGCOLOR=FFFFFF TEXT=000000 LINK=0000FF VLINK=800080>
<zero-md src="./AltParts.md" />
</BODY>
</HTML> |
Beta Was this translation helpful? Give feedback.
Leave this part as it is, then replace AltParts.html with: