howto
This commit is contained in:
@ -4,5 +4,8 @@ const router = express.Router();
|
||||
router.get("/", (req, res) => {
|
||||
res.render("about");
|
||||
});
|
||||
router.get("/howto", (req, res) => {
|
||||
res.render("howto");
|
||||
});
|
||||
|
||||
export default router;
|
@ -2,7 +2,6 @@ import express from "express";
|
||||
const router = express.Router();
|
||||
|
||||
import highlight from "highlight.js";
|
||||
console.log(highlight.highlightAuto("<?php\necho 'blah';\n?>"));
|
||||
|
||||
router.get("/", (req, res) => {
|
||||
const data = {
|
||||
|
Reference in New Issue
Block a user