windows 8 - How can I make IE stop "correcting" 'int i;' to 'int I;' when I type code on SE sites?

10
2013-10
  • luser droog

    Gagh! It'd be funny if it weren't so infuriating. I like spell-checking for English. It's really nice when you can't quite remember whether there is 1 'r' or 2 in "assurance", say. But after I've typed '`' (backquote) I don't want any help with screwing my code! I can screw it up on my own. Has any one else been irritated enough to figure this out already?

  • Answers
    Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

    Related Question

    How do I make a link to a url using Markdown?
  • Neal

    OK, here is a url that I tried linking to in an answer on [this] page:

    http://kb.mozillazine.org/Expanded_columns_in_folders_pane_(Thunderbird)

    If you click on the link, you will see that the link doesn't work as the closing bracket is omitted.

    How am I supposed to do it?


  • Related Answers
  • th3dude

    I believe the solution is to put a '\' before the closing parenthesis.

    So this:

    http://kb.mozillazine.org/Expanded_columns_in_folders_pane_(Thunderbird)

    becomes this:

    http://kb.mozillazine.org/Expanded_columns_in_folders_pane_(Thunderbird\ ) (without the extra space)

    However, SuperUser seems to support URLs with the closing parenthesis in them, so it shouldn't be a problem here.

    Source

  • ricbax

    http://kb.mozillazine.org/Expanded_columns_in_folders_pane_(Thunderbird)

    [1]: http://kb.mozillazine.org/Expanded_columns_in_folders_pane_%28Thunderbird%29
    

    Use URL Encoding opening bracket ( = %28 and closing bracket ) = %29

    Source: URL Encoded Characters