L
Liam
I'm wanting a macro to find instances of bullet lists, and replace it
with a html tagged list. Please see below for an example:
**my_doc.docx**
....
text,text,text
My bullet list:
• List point one
• List point two
Some more text here.
....
A find and replace resulting in
....
text,text,text
My bullet list:
<ul>
<li>List point one</li>
<li>List point two</li>
</ul>
Some more text here.
....
Does anyone know of a way to do this? I've tried looking for the
bullet characters; doesn't work as it's formatting. Tried looking for
lines with style "List bullet" and any other lists i can find; doesn't
work, I don't know why.
with a html tagged list. Please see below for an example:
**my_doc.docx**
....
text,text,text
My bullet list:
• List point one
• List point two
Some more text here.
....
A find and replace resulting in
....
text,text,text
My bullet list:
<ul>
<li>List point one</li>
<li>List point two</li>
</ul>
Some more text here.
....
Does anyone know of a way to do this? I've tried looking for the
bullet characters; doesn't work as it's formatting. Tried looking for
lines with style "List bullet" and any other lists i can find; doesn't
work, I don't know why.