re-added markdown support under EJS

This commit is contained in:
2025-07-23 02:49:05 +01:00
parent 306adf3943
commit 40e0cc80a3
5 changed files with 8 additions and 5 deletions

View File

@@ -101,6 +101,7 @@ app.get("/", (req,res) => {
format,
getUnixTime,
func,
converter,
})
}); // /
app.get("/user/:username", (req, res) => {
@@ -118,6 +119,7 @@ app.get("/user/:username", (req, res) => {
format: format,
getUnixTime: getUnixTime,
func,
converter,
})
}); // /user/:username
app.get("/post/:post_index", (req, res) => {
@@ -133,6 +135,7 @@ app.get("/post/:post_index", (req, res) => {
format,
getUnixTime,
func,
converter,
})
}); // /post/:post_index
app.get("/tag/:tag", (req,res) => {
@@ -148,6 +151,7 @@ app.get("/tag/:tag", (req,res) => {
format: format,
getUnixTime: getUnixTime,
func,
converter,
})
}); // /tag/:tag