refac: deprecate [ ] prompt variables

This commit is contained in:
Timothy Jaeryang Baek 2025-02-14 12:40:42 -08:00
parent 893bfe9d3a
commit 3d26bca7c5

View File

@ -53,10 +53,7 @@
// Function to find the next template in the document
function findNextTemplate(doc, from = 0) {
const patterns = [
{ start: '[', end: ']' },
{ start: '{{', end: '}}' }
];
const patterns = [{ start: '{{', end: '}}' }];
let result = null;