1
vote
1answer
395 views

PhpStorm: any solution for 4 annoying problems?

I'm a rather happy PhpStorm user, but there are a few things that really annoy me, but I'm not a settings expert and wish there is a solution for them (editing PHP files) : Navigation Often in the ...
2
votes
2answers
597 views

C# Tabify/Indent HTML

Is there a tool/library/function in C# which tabifies or indents generated html code without validating or tidying the input? Edit: Indent generated HTML code from JavaScript TextEditors, including ...
0
votes
3answers
340 views

For every line beginning with 4 spaces, add text-indent tags

I've got text where some lines are indented with 4 spaces. I've been trying to write a regex which would find every line beginning with 4 spaces and put a <span class="indented"> at the ...
1
vote
2answers
200 views

Block Indent Regex

I'm having problems about a regexp. I'm trying to implement a regex to select just the tab indent blocks, but i cant find a way of make it work: Example: INDENT(1) INDENT(2) CONTENT(a) ...
1
vote
4answers
1k views

How To Remove Indent From Code?

Lets consider this example of code... Don't look at code, but at indents. protected function _hashPassword( $password, $salt, $nuts = '' ) { if ( $nuts === '' ) { ...