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
Try the following in Sublime:
var Test = React.createClass({ render: function() { return ( <div> <h1> I want to get out of here. </h1> </div> ); } });
Notice it messes up the syntax highlighting of </h1> and </div>. Try taking out the word "get" and it works okay again.
</h1>
</div>
The text was updated successfully, but these errors were encountered:
So do quite a few other words, including do and with:
do
with
Sorry, something went wrong.
That doesn't bother me as much; I can deal with that. Using the word get turns off highlighting for the rest of the JSX XML/HTML block.
get
If you'd like a temporary workaround, this works:
<h1>{"I want to get out of here"}</h1>
Not nice but it works.
No branches or pull requests
Try the following in Sublime:
Notice it messes up the syntax highlighting of
</h1>
and</div>
. Try taking out the word "get" and it works okay again.The text was updated successfully, but these errors were encountered: