mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-18 06:49:47 +02:00
8 lines
308 B
JavaScript
8 lines
308 B
JavaScript
// Debug file to print the structure of a parsed mindmap
|
|
import { mindMapParse } from './test-util.js';
|
|
|
|
const result = mindMapParse('mindmap\nroot\n child1\n child2');
|
|
|
|
console.log('Parser result:', result.value);
|
|
console.log('Statement structure:', JSON.stringify(result.value?.statements[0], null, 2));
|