File tree Expand file tree Collapse file tree
src/GoogleMaterialDesignIconsGenerator/Service Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ This allows you to access the icons like this:
5959
6060## Loading tradeoffs
6161
62- Material Symbols constants in this package are ligature-based strings (for example ` material-symbols-rounded/ weight` ).
62+ Material Symbols constants in this package are ligature-based strings (for example the ligature name ` weight ` ).
6363Ligature rendering can still show readable fallback text briefly on very first load in some environments.
6464
6565If your UI requires a strict "never show fallback text" behavior, prefer SVG icons.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ public class IconHttpClientService : IDisposable
88{
99 public const string GoogleFontUrl = "http://fonts.google.com/" ;
1010 public const string GoogleFontsCssApiUrl = "https://fonts.googleapis.com/css2" ;
11- private static readonly Regex Woff2UrlRegex = new ( @"url\((['""]?)(?<href>https? ://[^)'""]+?\.woff2)\1\)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
11+ private static readonly Regex Woff2UrlRegex = new ( @"url\((['""]?)(?<href>https://[^)'""]+?\.woff2)\1\)" , RegexOptions . Compiled | RegexOptions . IgnoreCase ) ;
1212
1313 private readonly HttpClient _httpClient ;
1414 private readonly JsonSerializerOptions _jsonSerializerOptions ;
You can’t perform that action at this time.
0 commit comments