-
Notifications
You must be signed in to change notification settings - Fork 521
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
markdown on tasks do not work when using line breaks #2049
Labels
Comments
Can I take this on, I was digging through the markdown code today and I think this is due to a small oversight with regexes that is trivial to fix. |
EanLombardo
added a commit
to EanLombardo/habitica-android
that referenced
this issue
Jul 13, 2024
.* does not match line breaks, so this regex would never apply to multiline text. This checks for contains instead of using .* to account for this. Fixes HabitRPG#2049
phillipthelen
pushed a commit
that referenced
this issue
Sep 5, 2024
.* does not match line breaks, so this regex would never apply to multiline text. This checks for contains instead of using .* to account for this. Fixes #2049
this will be fixed in android 4.4.2 |
phillipthelen
pushed a commit
that referenced
this issue
Sep 10, 2024
.* does not match line breaks, so this regex would never apply to multiline text. This checks for contains instead of using .* to account for this. Fixes #2049
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: