Commit 1dc1ccc7 authored by Andreas Jung's avatar Andreas Jung

added '_' to _URL_AND_PUNC (COllector 2260)

parent e6dbb193
......@@ -938,7 +938,7 @@ class DocumentClass:
## Some constants to make the doc_href() regex easier to read.
_DQUOTEDTEXT = r'("[%s0-9\n%s]+")' % (letters,punctuation) ## double quoted text
_URL_AND_PUNC = r'([%s0-9\@%s]+)' % (letters,punctuation)
_URL_AND_PUNC = r'([%s0-9_\@%s]+)' % (letters,punctuation)
_SPACES = r'(\s*)'
def doc_href(self, s,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment