Files
http.md/src/exports.ts
Morten Olsen bc92c91ff8 init
2025-05-18 20:01:34 +02:00

17 lines
322 B
TypeScript

import { inspect } from "node:util";
import { Context } from "./context/context.js";
import { execute } from "./execution/execution.js";
const context = new Context({
input: {
foo: '10',
},
});
const result = await execute('./demo.md', {
context,
});
console.log(result.markdown);
console.log(context.files);