in reply to Re^2: Style: buried variables or double referencing?
in thread Style: buried variables or double referencing?
"many lines of code" = about 1,500How do you create your html? If it is generated with print and heredocs within the script, you probably can reduce its size by using a templating mechanism and moving the html to separate files.
There is another way to achieve this. Put your common code into modules.
- reduced total code lines because common elements are not rerpoduced in separate scripts
- during development, a change to any common element only has to be made once instad of four times.
|
|---|