4 lines
98 B
TypeScript
Raw Normal View History

export const detector = (txt: string) => {
return txt.match(/^\s*example-diagram/) !== null;
};