There's no need to have a table row for each line and one row to split paragraphs. When the nicer design is more lightweight and simpler to write, I don't see why not. Just an aesthetic suggestions for future versions. Those tables are getting a bit awkward.
Might take a few hours to convert the tags from table rows merged into paragraphs and adding split lines (almost 1500 lines). I don't mind doing it. Here's my suggestion:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It currently looks like this:
Code: Select all
<tr><td># This User Process Tracking option sends an alert if any cPanel user process</td></tr>
<tr><td># exceeds the memory usage set (MB). To ignore specific processes or users use</td></tr>
<tr><td># csf.pignore</td></tr>
<tr><td>#</td></tr>
<tr><td># Set to 0 to disable this feature</td></tr>
<tr><td style="font-family: Courier New,Courier; font-size: 12px;" bgcolor="#f4f4ea"><b>PT_USERMEM </b> = <input name="PT_USERMEM_" value="200" size="7" type="text"> Default: 100</td></tr>
...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# This User Process Tracking option sends an alert if any cPanel user process
# exceeds the memory usage set (MB). To ignore specific processes or users use
# csf.pignore
#
# Set to 0 to disable this feature
PT_USERMEM = Default: 100
It would probable be ten times as elegant and pleasant to browse and edit if it was changed to (not counting it take less markup):
Code: Select all
<hr />
<p>This User Process Tracking option sends an alert if any cPanel user process exceeds the memory usage set (MB). To ignore specific processes or users use csf.pignore</p>
<p>Set to 0 to disable this feature</p>
<tr><td style="font-family: Courier New,Courier; font-size: 12px;" bgcolor="#f4f4ea"><b>PT_USERMEM </b> = <input name="PT_USERMEM_" value="100" size="7" type="text"> Default: 100</span>
<hr />
...
__________________________________________________________________________
This User Process Tracking option sends an alert if any cPanel user process exceeds the memory usage set (MB). To ignore specific processes or users use csf.pignore
Set to 0 to disable this feature
PT_USERMEM = Default: 100
__________________________________________________________________________