This commit is contained in:
Morten Olsen
2025-05-18 18:43:30 +02:00
commit bc92c91ff8
26 changed files with 5001 additions and 0 deletions

16
src/exports.ts Normal file
View File

@@ -0,0 +1,16 @@
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);