You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Js.String.replaceByRe ~regexp:[%re "/<em>(.*?)<\\/em>/gi"] ~replacement:"$1" will not work as it does in the browser. Rather than replacing with the capturing group it just uses the "$1" string.
Maybe the function should be commented for now, or at least raise an alert / warning?
The text was updated successfully, but these errors were encountered:
Js.String.replaceByRe ~regexp:[%re "/<em>(.*?)<\\/em>/gi"] ~replacement:"$1"
will not work as it does in the browser. Rather than replacing with the capturing group it just uses the"$1"
string.Maybe the function should be commented for now, or at least raise an alert / warning?
The text was updated successfully, but these errors were encountered: