remove extra backslash that was breaking link regex
This commit is contained in:
parent
7850117cb6
commit
49d480d1e6
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ class EventRenderer extends ConsumerWidget {
|
||||||
textStyle: textStyle,
|
textStyle: textStyle,
|
||||||
formattedBody!.replaceAllMapped(
|
formattedBody!.replaceAllMapped(
|
||||||
RegExp(
|
RegExp(
|
||||||
r"(<a\b[^>]*>.*?<\/a>)|(\\bhttps?:\/\/[^\s<]+)",
|
r"(<a\b[^>]*>.*?<\/a>)|(\bhttps?:\/\/[^\s<]+)",
|
||||||
caseSensitive: false,
|
caseSensitive: false,
|
||||||
dotAll: true,
|
dotAll: true,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue