q-import { wiki-common.qhtml } wiki-shell { sectionKey: "escape-sequences" pathPrefix: "" pageTitle: "Escape Sequences" pageIntro: "Because braces are part of the language syntax, you sometimes need an escape when you want a literal brace inside block content." main { wiki-example-card { title: "Escape literal braces" summary: "Use \\{ and \\} inside block bodies when you want literal brace characters." note: "This matters most in text blocks, code samples, and brace-heavy copy." } details { html { <q-html> div { text { hello \} world } } </q-html> } } } } }