This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is RegEx which is needed to be used if we want to catch something like: | |
<tr data-url="/beach" | |
{% if weather.isHot() %} | |
class="clickableRow" | |
{% endif %} | |
> | |
* Important notes: | |
* - We need \s* for catching all the whitespace before and after. |