| Author | Dave Jarvis <email> |
|---|---|
| Date | 2019-07-04 14:39:08 GMT-0700 |
| Commit | 55498edc91879bf3de7baeccbc15f24494ed4773 |
| Parent | 156a225 |
| * `({{(.*?)}})` - matches `{{...}}` | ||
| +The open and closing parentheses---`(` and `)`---are mandatory. The `?` indicates a non-greedy match. Without the `?`, multiple variable references would not match. For example, `name: $var.1$ $var.2$` would be treated as a variable named `var.1$ $var.2` instead of two distinct variables `var.1` and `var.2`. | ||
| + | ||
| # Errors | ||
| Delta | 2 lines added, 0 lines removed, 2-line increase |
|---|