Forum Issues
-
Is there a way to insert a bulleted list?
I see the little icon to the right of the Italics, but when I select text, it only puts a bullet by the first item. Inserting a CR after each item doesn't seem to matter.
First Item
Second Item
Third Item=-=-=-=-=
- First Item
Second Item
Third Item
=-=-=-=-=
- First Item
Second Item
Third Item
- First Item
-
Oh, so you are selecting an existing text and want to convert each line to a list item?
Hm.
A "low-key" solution if you really want this would be to select the text, pop up a "search&replace" dialogue (which may or may not require a plugin in your browser of choice) and replace all CRs by "CR* ". If you are a Mac OS command line nerd, use
sed
. -
It looks like you can create a list as you type
- by
- leading
- each
- line
with an asterisk and a space.
-
@george-k said in Forum Issues:
The reason I ask is that in the "retraction" thread, there are 62 items listed, and it would be nice to separate them with bullets, or perhaps number. Adding an asterisk at each item is a PITA.
Paste it into a text editor. Do find and replace for \n or \r and replace with \n* or \r*
-