We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added /js console.log('^3hello js'), but it fucks up on " and ;
/js console.log('^3hello js')
"
;
Needs a hook to process the entire console field line, to get rid of /js syntax entirely
/js
Best would be a syntax like:
= a = 0 = a++ = console.log("a is", a)
= a = 0
= a++
= console.log("a is", a)
Or:
# a = 0 # a++ # console.log("a is", a)
# a = 0
# a++
# console.log("a is", a)
~ a = 0 ~ a++ ~ console.log("a is", a)
~ a = 0
~ a++
~ console.log("a is", a)
What looks/feels nicest?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Added
/js console.log('^3hello js')
, but it fucks up on"
and;
Needs a hook to process the entire console field line, to get rid of
/js
syntax entirelyBest would be a syntax like:
= a = 0
= a++
= console.log("a is", a)
Or:
# a = 0
# a++
# console.log("a is", a)
Or:
~ a = 0
~ a++
~ console.log("a is", a)
What looks/feels nicest?
The text was updated successfully, but these errors were encountered: