-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More strict regex #75
Comments
The pattern ++ is definitively too common. So many tools use a name containing ++ : C++, Notepad++, bonnie++, tolua++, g++, vera++. |
a) We are dealing with two patterns: inline |
This breaks the plugin also.
|
@ShareBugreports This seems like a separate issue to me. I think this may be caused by the DokuWiki automatic URL detection, as the following works fine:
But I don't have time to analyse this right now. |
The plugin breaks when entering text with multiple plusses. For example, the openssl tool will create lines like:
...................................................................................+++++
We can
fold.txt
improve the regex:
Was toying with something like:
'^+{4}[^+].|(?=.++++$)
But it breaks also. Not sure to part after the pipe (not sure what a "line" is for dokuwiki).
Example file included.
Note: Strict settings can potentially break if users did not exactly followed the syntax.
The text was updated successfully, but these errors were encountered: