feat: support template in all code blocks

This commit is contained in:
Morten Olsen
2025-05-18 20:31:23 +02:00
parent 1cb885bb32
commit 1b2d345420
5 changed files with 132 additions and 88 deletions

View File

@@ -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 };