I'm trying to set a user defined language in Notepad++ to bold all text between asterisks followed by space.
I've clicked on user defined language and then create new language, then in comments tab I set for "open" and "close" an *
. This works but if the string is followed by a point, I don't want the rule bold that text.
For example in the following string
*Hello*. How are you doing? Fine. *Thank you* .
I only want Thank you to be bold because the *
after "you" is separated from the point .
with a space. In the other hand, I don't want Hello to be bold because the *
after the "o" is inmediately followed by a point.
Will look like this:
*Hello*. How are you doing? Fine. Thank you .
How can I do this?