organice icon indicating copy to clipboard operation
organice copied to clipboard

WIP test: Too eager parsing of italic markup

Open munen opened this issue 3 years ago • 1 comments

Related issue: #668

Here's the problem visualized:

image

However, why are the safe-guards not working? There should be one of \s({'" at the start of the match. But.. there isn't.

munen avatar May 09 '21 06:05 munen

Group 10 and 14 are optional. So they cannot prevent the matching starting and ending at inside a word.

And because of greedy group 13 .* it also parses /Foo/ Bar Baz/ as one italic sentence (but that is issue #175 ).

schoettl avatar May 09 '21 07:05 schoettl