isAnyMacro method
Implementation
bool isAnyMacro() {
var line = trim().toLowerCase();
return line.startsWith('<!-- #') && line.endsWith('-->');
}
bool isAnyMacro() {
var line = trim().toLowerCase();
return line.startsWith('<!-- #') && line.endsWith('-->');
}