Quote:
Originally Posted by KevinH
Okay pushed a fix for the second one where you can not align paragraph if cursor just before ending tag </
|
Thanks, that's great to hear!
Quote:
Originally Posted by KevinH
But trying to bold a tag and not just its contents is asking for trouble.
|
How so, if I've selected the opening and closing tags inclusive? In the example
Code:
<p>one <i>blah</i> two</p>
If I were to select <i>blah</i> and add a bold tag, it should give me
Code:
<p>one <b><i>blah</i></b> two</p>
just as easily as if selecting only blah would give
Code:
<p>one <i><b>blah</b></i> two</p>
The only issue I can see is if you didn't select the entire tag block (i.e. "<i>bl" or "ah</i>") which of course would be bad.
I'm not trying to be ornery about this, and I'm fine with it not being something you're interested in changing; I'm more just interested from a learning/best practices standpoint.
In any case, thanks for everything!