Lines Matching full:bracketed
1649 * GESHI_BEFORE:Specifies a bracket group that should appear before the highlighted match (this bracketed group will not be highlighted). Use this if you had to match what you wanted by matching part of your regexp string to something before what you wanted to highlight, and you don't want that part to disappear in the highlighted result.
1650 * GESHI_AFTER:Specifies a bracket group that should appear after the highlighted match (this bracketed group will not be highlighted). Use this if you had to match what you wanted by matching part of your regexp string to something after what you wanted to highlight, and you don't want that part to disappear in the highlighted result.
1661 GESHI_REPLACE => '\\2', // we wanna highlight the characters, which are in the second bracketed group
1663 GESHI_BEFORE => '\\1', // before the highlighted characters should be the first bracketed group (always a dollar sign in this example)
1664 GESHI_AFTER => '\\3' // after the highlighted characters should be the third bracketed group (always an ampersand in this example)