mirror of
https://github.com/morten-olsen/http.md.git
synced 2026-02-08 00:46:28 +01:00
feat: support template in all code blocks
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
import { ExecutionHandler } from "../execution.js";
|
||||
import { fileHandler } from "./handlers.file.js";
|
||||
import { fileHandler } from "./handlers.md.js";
|
||||
import { httpHandler } from "./handlers.http.js";
|
||||
import { inputHandler } from "./handlers.input.js";
|
||||
import { rawMdHandler } from "./handlers.raw-md.js";
|
||||
import { responseHandler } from "./handlers.response.js";
|
||||
import { textHandler } from "./handlers.text.js";
|
||||
import { codeHandler } from "./handlers.code.js";
|
||||
|
||||
const handlers = [
|
||||
fileHandler,
|
||||
@@ -13,6 +14,7 @@ const handlers = [
|
||||
textHandler,
|
||||
inputHandler,
|
||||
rawMdHandler,
|
||||
codeHandler,
|
||||
] satisfies ExecutionHandler[];
|
||||
|
||||
export { handlers };
|
||||
|
||||
Reference in New Issue
Block a user