When coding inline styles, it's often convenient to separate individual style statements with a newline in the code to simplify visual work on the styles associated with an element. For example:
<div style="
border:5px solid red;
padding: 20px;
text-align:center;
.......
">
While this isn't recommended, it's extremely useful in complex code where, for instance, one needs to make a temporary edit to an element, and it's valid HTML/CSS code, One may not want to move off to a style section, possibly in another file, to declare a class for this single purpose.
Bluefish goes off duty after the first newline, however, and displays subsequent lines up until the line with the closing quote, as text, and doesn't provide any formatting help or text color clues.
Would it be possible for Bluefish to interpret this code format just as it would if the entire style attribute were on a single line with individual style definitions separated by simple white space?
Diff:
what do you mean "Bluefish goes off duty after the first newline"? The syntax is highlighted correctly when I try this? Can you make a screenshot?