mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
const detector = function detect(txt) {
|
|
if (txt.match(/^\s*mindmap/)) {
|
|
return 'mindmap';
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export default detector;
|