add a space near the start for symmetry and readability

Co-authored-by: Sidharth Vinod <sidharthv96@gmail.com>
This commit is contained in:
Ashley Engelund 2022-12-16 06:37:05 -08:00 committed by GitHub
parent ae7fd777a7
commit 521a30dcd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@
\%%[^\n]* /* skip comments */
"scale"\s+ { this.pushState('SCALE'); /* console.log('Got scale', yytext);*/ return 'scale'; }
<SCALE>\d+ return 'WIDTH';
<SCALE>\s+"width" {this.popState(); }
<SCALE>\s+"width" { this.popState(); }
accTitle\s*":"\s* { this.begin("acc_title");return 'acc_title'; }
<acc_title>(?!\n|;|#)*[^\n]* { this.popState(); return "acc_title_value"; }