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
The autogen wont recognize the icon if there is more than one whitespace character after the opening tag,
Here are two examples:
1. <famore than one whitespaceicon="fas-info-circle" />
2.
<fa
icon="fas-info-circle"
....
/>
Looking through the source code I see there is a regex on line 23: /(?<=<fa\sicon="+).*?(?=")/g
adding a plus quantifier after the \s meta escape, solves this issue.
See before and after on regex101.com
The text was updated successfully, but these errors were encountered:
The autogen wont recognize the icon if there is more than one whitespace character after the opening tag,
Here are two examples:
1.
<fa
more than one whitespaceicon="fas-info-circle" />
2.
Looking through the source code I see there is a regex on line 23:
/(?<=<fa\sicon="+).*?(?=")/g
adding a plus quantifier after the
\s
meta escape, solves this issue.See before and after on regex101.com
The text was updated successfully, but these errors were encountered: