- Developer: Yasin Kuyu
- Find it on the Brackets Extension Manager
- What it does: Adds many very useful developer tools to Brackets.
- How to use it: Use the new Tools menu or right-click; note that one tool is only available using a key command. Details follow.
Tools
Note that every tool, with the exception of To SEO URL, will act on the entire document if nothing is selected; if some code is selected, however, the tool will act only on the selection.
- Remove empty/blank lines
Goodbye empty lines - Remove break lines
Strips the Enter/Return characters from ends of lines
- Remove line numbers
Removes line numbers if formatted as1.
or1
- Remove duplicate lines
Goodbye dupes
- Word to array
Converts words in single or multiple line(s) into JSON array - Word to list
Converts words in single or multiple line(s) into<li>
s inside a<ul>
- Line to list
Converts lines of text into<li>
s inside a<ul>
- HTML Tag Remove/Strip
Removes start (e.g.,<p>
) & close (e.g.,</p>
) tags
- Trim
Removes spaces from right & left - Left Trim
Removes spaces from left - Right Trim
Removes spaces from right
- First x Char Remove
Removes specified number of characters from beginning - Last x Char Remove
Removes specified number of characters from end
- To SEO URL
Changes<a href="This should link">
into<a href="this-should-link">
- To Upper Case
CAPITALIZES every letter - To Lower Case
lowercases every letter - To Title Case
Capitalizes The First Letter Of Each Word
- HTML Encode
Converts symbols to character entities - HTML Decode
Converts character entities to symbols
- URL Encode
Converts reserved characters in URLs using percent encoding so they can be used elsewhere (e.g.,http://foo.com/bar baz quz.html
tohttp%3A%2F%2Ffoo.com%2Fbar%20baz%20quz.html
) - URL Decode
Converts percent encoded URLs back into readable text (e.g.,http%3A%2F%2Ffoo.com%2Fbar%20baz%20quz.html
tohttp://foo.com/bar baz quz.html
)
Key command
Brackets Tools also provides a tool that is only available using key commands. To select every instance of selected tag or text in your HTML, press one of the following key commands:
- Mac: ^⌘G
- Windows: Alt+F3
At that point, anything you type will change every selected instance of the tag or text.