HTML tools
I just want to share two online tools that may help us on building websites.
I found these very easy to use so that's why I bookmarked them and
continously devoted using them
1. HTML Encoder
2. Javascript Beautifier
HTML Encoder
(http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Encode.aspx)
HTML has special handling for characters like < and > symbols, so it doesn't
work well with those characters where they shouldn't be. Having spurious
characters like those symbols in your text can have some weird effects -
blocks of text not appearing, broken formatting, and generally just not
seeing what you expect to see.
This can all be fixed by 'escaping' those characters. This process involves
scanning the text for those characters, and replacing them with a special
character-code that browsers can interpret as the correct symbol, without
actually embedding that symbol in your text.
For example, the escaped character code for > is >.
Most web platforms have some way of manually encoding and decoding this
escaped format. If not, you can use our online HTML Encoder and Decoder to
do the job.
Javascript Beautifier (http://jsbeautifier.org/)
This beautifier can process your messy or compacted javascript, making it
all neatly and consistently formatted and readable.
You can always see the latest version of the code in github, and you can
download the beautifier for local use (zip, tar.gz) as well.
Comments