magicMatch
Deprecated 4.0
RegExp
A regular expression that matches from the start of the magic tag to the end of the magic tag. It should also have the first capture group match the content within the magic tag.
parser( " /* ... */ content /* ... */", {
// ...
magicStart: "{",
magicMatch: /\{([^\}]*)\}/g
} );