First post

This commit is contained in:
2023-09-15 23:22:03 +02:00
parent 74b1eb46bc
commit fdf18f1196
4 changed files with 80 additions and 9 deletions

19
markdown.js Normal file
View File

@@ -0,0 +1,19 @@
const toHtml = () => {
return `<div>markdown</div>`;
};
const singleSymbols = [
"#",
"##",
"###",
"####",
"#####",
"######",
"-",
"- []",
"- [ ]",
];
const doubleSymbols = ["*", "**", "_", "__", "`", "```"];
const symbols = {};