First post
This commit is contained in:
19
markdown.js
Normal file
19
markdown.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const toHtml = () => {
|
||||
return `<div>markdown</div>`;
|
||||
};
|
||||
|
||||
const singleSymbols = [
|
||||
"#",
|
||||
"##",
|
||||
"###",
|
||||
"####",
|
||||
"#####",
|
||||
"######",
|
||||
"-",
|
||||
"- []",
|
||||
"- [ ]",
|
||||
];
|
||||
|
||||
const doubleSymbols = ["*", "**", "_", "__", "`", "```"];
|
||||
|
||||
const symbols = {};
|
||||
Reference in New Issue
Block a user