We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are multiple regular expressions in the source code related to tags. Unfortunately, they have a different idea about valid tag names:
TAG_REGEX = re.compile(r'^\B\@\w+(\-\w+)*\,*')
TAG_REGEX = re.compile(r'(?<!\/|\w)\@\w+(\.*[\-\w+\+\%\$\\(\)\[\]\{\}\^\=\/\*])*')
TAG_REGEX = re.compile(r'\B@\w+[-_()\w]*')
For example, the task editor (2.) recognizes the following lines as tags, but the other two does not:
@r^{2}x(3.14) @a$(){} @a^2+b^2=c^2 @_.-._
The first definition is probably the most reasonable and the easiest to handle. However, it might not be that simple based on PR #875.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are multiple regular expressions in the source code related to tags. Unfortunately, they have a different idea about valid tag names:
TAG_REGEX = re.compile(r'^\B\@\w+(\-\w+)*\,*')
TAG_REGEX = re.compile(r'(?<!\/|\w)\@\w+(\.*[\-\w+\+\%\$\\(\)\[\]\{\}\^\=\/\*])*')
TAG_REGEX = re.compile(r'\B@\w+[-_()\w]*')
For example, the task editor (2.) recognizes the following lines as tags, but the other two does not:
The first definition is probably the most reasonable and the easiest to handle. However, it might not be that simple based on PR #875.
The text was updated successfully, but these errors were encountered: