meld
Version:
Meld: A template language for LLM prompts
14 lines • 609 B
JSON
{
"dirs": [
"project/src",
"project/tests",
"home/.config"
],
"files": {
"project/README.md": "# Test Project\n\nA basic test project for meld tests.",
"project/src/main.meld": "@text greeting = \"Hello World\"\n@data count = 42\n@path config = \"$HOMEPATH/.config/settings.json\"",
"project/src/other.meld": "# Section One\nThis is some content.\n\n# Section Two\nMore content here.",
"project/tests/test.meld": "@import [../src/main.meld]\n@embed [../src/other.meld # Section One]",
"home/.config/settings.json": "{\n \"theme\": \"dark\",\n \"debug\": true\n}"
}
}