Gauthier
Gauthier
This isn't an optimal implementation, but you could hack it: ```ts function parseStrict(...args: Parameters): Date { const date = parse(...args); if (isValid(date) && args[0] === format(date, args[1])) { return date;...
> Just using strings is better than not implementing a codec at all imo. I agree currently the only way to make queries with decimals work is to do explicit...
@stevecastaneda, since Tiptap gives you `transaction.before` in the `onUpdate`, I think this approach would be more robust and cleaner: ```ts useEditor({ ... onUpdate: ({ transaction }) => { const nodeIds...