{
  "dirs": [
    "project/docs",
    "project/src",
    "project/examples"
  ],
  "files": {
    "project/docs/main.meld": "# Main Document\n\n@embed [../examples/basic.meld # Basic Usage]\n\n## Advanced Examples\n\n@embed [../examples/advanced.meld # Complex Example] as ###\n\n## API Reference\n\n@embed [../src/api.meld] under API Documentation",
    "project/examples/basic.meld": "# Basic Usage\n\nHere's a simple example:\n\n```meld\n@text greeting = \"Hello\"\n@data count = 1\n```\n\n# Advanced Usage\n\nSkip this for now.",
    "project/examples/advanced.meld": "# Complex Example\n\nHere's a more complex example:\n\n```meld\n@text base = \"Hello\"\n@text name = \"World\"\n@data items = [1, 2, 3]\n@path config = \"$HOMEPATH/config.json\"\n```\n\n# Simple Example\n\nThis should be skipped.",
    "project/src/api.meld": "# API Documentation\n\n## Text Variables\nUse `@text` to define text.\n\n## Data Variables\nUse `@data` for structured data.\n\n## Path Variables\nUse `@path` for file paths."
  }
} 