I am looking for a way to provide correct indentation for bulletin points
Basically what I want is that if the first character in a line is '-', word wrap will align the first character of the next line not under the hyphen but under the first word _after_ the hyphen
So instead of
I will get
Is this possible?
Also this can maybe be extended to number/letter bullets etc for example checking if the first word of a wrapped line ends with a '.' (i.e. '1a.') and indenting under the first letter of the second word ...
Thanks!
Basically what I want is that if the first character in a line is '-', word wrap will align the first character of the next line not under the hyphen but under the first word _after_ the hyphen
So instead of
Code: Select all
- this is a very long line that
wraps under
Code: Select all
- this is a very long line that
wraps under
Also this can maybe be extended to number/letter bullets etc for example checking if the first word of a wrapped line ends with a '.' (i.e. '1a.') and indenting under the first letter of the second word ...
Thanks!