Your comments

That's a valid solution until the lines you want to wrap are separated by blank lines.  If you select all the lines (including blanks inbetween), it will wrap the blank lines too.


Example...


line 1

[blank line]

line 2

[blank line]

line 3


becomes ...


<p>line 1</p>

<p></p>

<p>line 2</p>

<p></p>

<p>line 3</p>


what we want is ...


<p>line 1</p>

[kept blank]

<p>line 2</p>

[kept blank]

<p>line 3</p>


That's how TM did it.  FYI.


Still love Sublime Text but would LOVE to see this functionality added.


(e)