mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-23 17:29:54 +02:00
9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
const detector = (txt) => {
|
|
if (txt.match(/^\s*mindmap/)) {
|
|
return 'mindmap';
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export default detector;
|