Excluding code sections from EPIC/tidyperl source formatting

294 Views Asked by At

I in a large codebase of an application written in perl there is a lot of HTML and JS written inline in the perl file.

$html_str = qq^ <A LOT OF HTML> ^;

All the code development in done using Eclipse IDE and EPIC plugin. For ease of merging/diffs et al, I am looking for a way to tell the EPIC source formatter not to apply formatting rules to the HTML and JS that is written inline. Is there a way to do this?

1

There are 1 best solutions below

2
On

HTML embedded in the code is a red flag. That's stuff a designer is going to want to tweak, and so should be able to get at easily. The HTML should be split out into template files. I realize this doesn't answer your question, but it does solve your problem.

Otherwise, use perltidy to handle Perl code formatting. It won't mess with content inside strings and certainly isn't going to try and format HTML.