Select a block of text and convert to a HTML <ul> or <ol> list. It will remove spaces, tabs and bullet characters in front of each line before converting to a list item.
Select these lines of text in your code editor window: Line 1 • Line 2 Line 3 Line 4 Line 5 Lines 6
Right click, then click Convert to Unordered List, and you get the following: <ul> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> <li>Line 4</li> <li>Line 5</li> <li>Line 6</li> </ul>
Update Version 1.3:
Update Version 1.2:
|