Special characters must be escaped?

My code is saying the message of Special characters must be escaped and I don’t understand what it means. Could someone please help me with what to do here?

hi @Maliha_Irfan - that first red underline is probably because you have that / there in an opening a-plane tag, and also you are missing the - in that closing a-plane tag. this is causing the editor to not recognize these as tags but see the brackets as special characters.

Welcome to the community! :wave: The rotation shouldn’t have a " before it. Neither should width or height. And then color needs one right after the = sign. Hope this helps! :slight_smile:

You’re currently starting the a-plane element with a closing tag instead of an opening tag and then there’s a bunch of quote issues, so:

  1. remove that / at the start of </a-plane position......>,
  2. rotation=.... has a rogue " in front of it, so remove that, and
  3. color=#7BC8A"4> is missing an opening quote, and has the closing quote in the wrong place. That should probably be color="#7BC8A4">
  4. the closing tag should be </a-plane>, not </a plane>
1 Like