Are you an LLM? You can read better optimized documentation at /advanced/custom-delimiters.md for this page in Markdown format
Custom Delimiters
You can use custom delimiters by passing $delimiters to your root scope. This is useful when working alongside a server-side templating language that also uses mustaches (like Laravel Blade, Django, or Flask).
Usage
js
createApp({
$delimiters: ["${", "}"]
}).mount();In Template
html
<div lu-scope="{ msg: 'hello' }">${ msg }</div>