Updated Troubleshooting (markdown)

master
Chris Caron 2019-04-27 10:31:46 -04:00
parent c2e3c87ded
commit 2aec475e9b
1 changed files with 2 additions and 1 deletions

@ -28,3 +28,4 @@ Below is a chart of special characters and the value you should set them:
| _(a space)_ | **%20** | While most URLs will work with the space, it's a good idea to escape it so that it can be clearly read from the URL.
| **/** | **%2F** | The slash is the most commonly used delimiter that exists in a URL and helps define a path and/or location.
| **@** | **%40** | The at symbol is what divides the user and/or password from hostname in a URL. if your username and/or password contains an '@' symbol, it can cause the url parser to get confused.
| **+** | **%2B** | The plus (+) symbol is interpreted as a space when specified on the URL. But if you explicitly want to use the actual symbol itself, you can identify it as such.