Looking for regular expression (I'd appreciate both UE & Unix style) which will take whole block of code and will insert some string before and after.
Example:
when using replace dialog for eg. line with margin and padding selection it will produce this:
Thanks for any help
Example:
Code: Select all
body
{
background-color: #fff;
color: #000;
margin: 0;
padding: 0;
text-align: justify;
}
Code: Select all
body
{
background-color: #fff;
color: #000;
/*
margin: 0;
padding: 0;
*/
text-align: justify;
}