diff --git a/bin/scripts/name_parser/README.md b/bin/scripts/name_parser/README.md index fa981ed67..ece39f737 100644 --- a/bin/scripts/name_parser/README.md +++ b/bin/scripts/name_parser/README.md @@ -54,105 +54,8 @@ work as it always did. ### The Tests -In this directory there are two tests. - -1. The first test checks the basics of the algorithm. It takes the filenames of all fonts in - `src/unpatched-fonts/`, then it calculates the naming and compares it to the original - naming in the font files. Ideally they would be equal. -2. The second test does a 'production run'. It patches each font in `src/unpatched-fonts/` - and patches it two times: Once without `--makegroups` and once with. Then it compares the - naming, and it also shows the original font naming (for comparison). - -All tests base on these assumptions - -* Fullname must be roughly equal -* Fontname must be roughly equal -* Familyname must roughly equal, order of all words does not matter - _(Order of words is ignored with test 2 only)_ -* SubFamilyname must be equal, order of words does not matter - _(First word must be equal, order of other words is ignored with test 2 only)_ -* Typographic names can be empty if the correct typographic name would be equal to the ordinary name -* Tests are done case insensitive -* Some special exemptions are made (see `lenient_cmp()` in test scripts) - -#### Test 1 - -`fontforge name_parser_test1 ../../../src/unpatched-fonts/**/*.[ot]tf 2>/dev/null` - -This test takes the filename of a font, parses it and generates names from it. Then the actual -font is opened and the generated names are compared with the stored names. This test is used -to test the algorithm itself. Of course no SIL table is active as we want to preserve the original -names. - -The output shows all the names, always two lines: first the generated names, then the readout -names. If there are differences the generated names are tagged with `+` and the readout ones -with `-`. If there are differences the actually different name part is marked with an `X`. - -The differences have reasons, and there is a file with textual explanations for them. So far -all differences are 'ok'. A new run of the script will compare all differences with the stored -ones and alert the user if a new difference is detected (or a difference vanished). In this -way changes of the algorithm can be tested with a wide base of inputs. - -#### Test 2 - -`fontforge name_parser_test2 ../../../src/unpatched-fonts/**/*.[ot]tf 2>/dev/null` - -This test compares actually patched fonts. Every font in `src/unpatched-fonts/` is patched two -times: First with the 'old/classic' `font-patcher` naming, and second with the new naming -algorithm in action (by specifying `--makegroups`). Again the name parts are compared with some -lenience and an output generated like test 1 does. - -Also again a file with known differences (with explanations) is read, and any new or vanished -differences are reported. In the report an additional line is given, tagged with `>`, that -contains the names of the original font, for human interpretation (often the reason -for a difference is obvious, because the classic `font-patcher` dropped information. - -_Note: Fonts `NotoColorEmoji` and `Lilex-VF` are not patchable, and thus ignored_ -_Note: Fonts `iosevka-heavyoblique`, `iosevka-term-heavyoblique`, `iosevka-mediumoblique` crash my machine and are ignored_ - -### Differences - -The naming of the patched fonts, if `--makegroups` is applied, will be different. Of course, that is the goal. -What are the differences in particular: - -* `Nerd Font` is not added in the end, but after the extended base name before the style -* The SubFamily contains only 4 Styles max: Regular, Bold, Italic, Bold-Italic -* The Noto fonts retain their abbreviated style names in the Family information -* `Nerd Font Mono` fonts get a `M` in windows mode (I believe that has been left out accidentally before) - -Apart from these general things, all changes are documented in detail in the `name_parser_test2` issues file. -Here is an overview over all the things that get renamed and why: - -| Occurences | Description | -|------------|-------------| -| 511 | Add weight/style to family | -| 43 | The fonts name is M+ not Mplus | -| 36 | Drop unneeded Typogr.Family/Typogr.Style | -| 26 | 'Term' is missing from Family | -| 22 | Change regular-equivalent name to Regular | -| 19 | Put Oblique into own SubFamily (and mark it as italic) | -| 5 | Drop Regular from Style | -| 4 | We handle (TTF) as sub-name | -| 4 | Fullname has been missing 'Nerd Font' | -| 4 | Bold / Bold-Italic are just a styles of Regular | -| 2 | Original font broken (Light in Family) | -| 2 | Classify Medium as own weigt and not Bold | -| 2 | Bold and Italic are styles of a basefont | -| 1 | Weight Condensed does not belong to base name | -| 1 | Use only Regular/Bold/Italic in SubFamily | -| 1 | Handle Retina as Weight and not Style | -| 1 | Do not call Semibold Light-Bold | - -From the count we see that almost all fonts are affected by incorrect Family naming. - -### Further steps - -One can examine all the (current) naming differences in the `name_parser_test2.known_issues` -file. The Explanation is followed by three lines of names: source-file, patched-with-makegroups, -and patched-classic. - -The Explanation sorts most differences into common groups. This helps to weed out -explanations that might do not need much attention. +In this directory were two tests. If interested you need to go back in the git history. +They are not needed anymore. ### Helper scripts @@ -166,30 +69,3 @@ way: * `query_version` `font_name` They can be invoked like this `$ fontforge query_sfnt foo.ttf`. - -### Appendix: The `name_parser_test*.known_issues` files - -All differences of 'old' to 'new' naming (if not one of the very general kind like resorting of -the words) are documented in the `known_issues` files. For each difference a reason is given. - -The files consist of entries that spans 3 (for test 1) or 4 (for test 2) lines. -| Line starts with | Contents | -|------------------|----------| -| # | Reson for the difference (or `AUTOGENERATED`) | -| > | Naming fo the original/source font (only test 2) | -| + | Naming with `--makegroups` (new naming) | -| - | Naming classically generated by font-patcher | - -After any test run a `known_issues.new` file is generated. It contains all the issues -from the `known_issues` file that were detected. Original issues that are not -existing anymore are at the bottom of the new file, clearly marked as such. If new -(previously unexplained) issues were detected they show up with the `AUTOGENERATED` -reason. - -After adding new fonts or replacing font files the test can be rerun. If there are issues -in the `.new` file they should be documented there, and the `.new` file replace the -original `known_issues` file (after removing possible 'obsolete' issues that are listed in -the bottom of the new file). - -In this way one can tweak the parser code and compare very easily what a change -means for all the fonts, which will break or be repaired. diff --git a/bin/scripts/name_parser/frequency b/bin/scripts/name_parser/frequency deleted file mode 100644 index bcc643f5e..000000000 --- a/bin/scripts/name_parser/frequency +++ /dev/null @@ -1,19 +0,0 @@ -cat name_parser_test2.known_issues | grep '####' | sed -E 's/#### //;s/\] /]\n/g;s/ \[[0-9]+\]//g' | sort | uniq -c | sort -nr - - 511 Add weight/style to family - 43 The fonts name is M+ not Mplus - 36 Drop unneeded Typogr.Family/Typogr.Style - 26 'Term' is missing from Family - 22 Change regular-equivalent name to Regular - 19 Put Oblique into own SubFamily (and mark it as italic) - 5 Drop Regular from Style - 4 We handle (TTF) as sub-name - 4 Fullname has been missing 'Nerd Font' - 4 Bold / Bold-Italic are just a styles of Regular - 2 Original font broken (Light in Family) - 2 Classify Medium as own weigt and not Bold - 2 Bold and Italic are styles of a basefont - 1 Weight Condensed does not belong to base name - 1 Use only Regular/Bold/Italic in SubFamily - 1 Handle Retina as Weight and not Style - 1 Do not call Semibold Light-Bold diff --git a/bin/scripts/name_parser/name_parser_test1 b/bin/scripts/name_parser/name_parser_test1 deleted file mode 100755 index 26134a614..000000000 --- a/bin/scripts/name_parser/name_parser_test1 +++ /dev/null @@ -1,160 +0,0 @@ -#!/usr/bin/env python3 -# coding=utf8 - -import sys -import re -import os.path -import fontforge -from FontnameParser import FontnameParser - -###### Some helpers - -def get_sfnt_dict(font): - """Extract SFNT table as nice dict""" - d = [] - for i, el in enumerate(font.sfnt_names): - d += [(el[1], el[2])] - return dict(d) - -def format_names(header, *stuff): - """Unify outputs (with header)""" - f = '{:1.1}|{:50.50} |{:1.1}| {:50.50} |{:1.1}| {:30.30} |{:1.1}| {:30.30} |{:1.1}| {:30.30} |{:1.1}| {:.30}' - if header: - d = '------------------------------------------------------------' - return f.format(*stuff) + '\n' + f.format('', d, d, d, d, d, d, d, d, d, d, d) - return f.format(*stuff).rstrip() - -def lenient_cmp(s1, s2): - """Compare two font name (parts) but be a bit lenient ;->""" - # We do not care about: - # - Case - # - "Display" vs "Disp" (in Noto) - # Allow for "IBM 3278" name - s = [ s1, s2 ] - for i in range(2): - # Usually given transform from 'their' to 'our' style - s[i] = s[i].lower() - s[i] = re.sub(r'\bdisp\b', 'display', s[i]) # Noto - s[i] = s[i].replace('ibm 3270', '3270') # 3270 - s[i] = s[i].replace('3270-', '3270 ') # 3270 - s[i] = s[i].replace('lekton-', 'lekton ') # Lekton - s[i] = s[i].replace('semi-narrow', 'seminarrow') # 3270 - s[i] = s[i].replace('bolditalic', 'bold italic') - s[i] = re.sub(r'\bfor\b', '', s[i]) # Meslo, Monofur - s[i] = re.sub(r'\bpowerline\b', '', s[i]) # Meslo, Monofur - s[i] = s[i].replace('fira mono', 'fura mono') # Obviously someone forgot to rename the fonts in Fira/ - s[i] = s[i].replace('aurulentsansmono-', 'aurulent sans mono ') # Aurulent fullname oddity - s[i] = s[i].replace('mononoki-', 'mononoki ') # Mononoki has somtimes a dash - s[i] = re.sub(r'\br\b', 'regular', s[i]) # Nonstandard style in Agave - s[i] = re.sub(r'(bitstream vera sans mono.*) oblique', r'\1 italic', s[i]) # They call it Oblique but the filename says Italic - s[i] = re.sub(r'gohufont (uni-)?(11|14)', 'gohufont', s[i]) # They put the 'name' into the subfamily/weight - s[i] = s[i].replace('xltobl', 'extralight oblique') # Iosevka goes inventing names - s[i] = re.sub(r'proggyclean(?!TT)( ?)', 'proggycleantt\1', s[i]) # ProggyClean has no TT in filename - - s[i] = re.sub(r' +', ' ', s[i]).strip() - return s[0] == s[1] - -TEST_TABLE = [ - ( '(m)plus', '\\1+'), - ( 'IAWriter', 'iA Writer'), - ( 'IBMPlex', 'IBM Plex'), - ( 'Vera', 'Bitstream Vera Sans'), -] - -###### Let's go! - -if len(sys.argv) < 2: - print('Usage: {} font_name [font_name ...]\n'.format(sys.argv[0])) - sys.exit(1) - -try: - with open(sys.argv[0] + '.known_issues', 'r') as f: - known_issues = f.read().splitlines() - # known_issues = [line.rstrip() for line in known_issues] - print('Found {:.0f} known issues'.format(len(known_issues) / 3)) # approx ;) -except OSError: - print('Can not open known_issues file') - known_issues = [] -new_issues = open(sys.argv[0] + '.known_issues.new', 'w') - -print('Examining {} font files'.format(len(sys.argv) - 1)) -all_files = 0 -issue_files = 0 -known_files = 0 - -print(format_names(True, '', 'Filename', '', 'Fullname', '', 'Family', '', 'Subfamily', '', 'Typogr. Family', '', 'Typogr. Subfamily')) - -for filename in sys.argv[1:]: - fullfile = os.path.basename(filename) - fname = os.path.splitext(fullfile)[0] - if fname == 'NotoColorEmoji': - continue # font is not patchable - n = FontnameParser(fname).enable_short_families(False, 'Noto').add_name_substitution_table(TEST_TABLE) - # Example for name injection: - # n.inject_suffix("Nerd Font Complete Mono", "Nerd Font Complete M", "Nerd Font Mono") - - font = fontforge.open(filename, 1) - sfnt = get_sfnt_dict(font) - font.close() - all_files += 1 - - sfnt_full = sfnt['Fullname'] - sfnt_fam = sfnt['Family'] - sfnt_subfam = sfnt['SubFamily'] - sfnt_pfam = sfnt['Preferred Family'] if 'Preferred Family' in sfnt else '' - sfnt_psubfam = sfnt['Preferred Styles'] if 'Preferred Styles' in sfnt else '' - - t1 = not lenient_cmp(sfnt_full, n.fullname()) - t2 = not lenient_cmp(sfnt_fam, n.family()) - t3 = not lenient_cmp(sfnt_subfam, n.subfamily()) - t4 = not lenient_cmp(sfnt_pfam, n.preferred_family()) - t5 = not lenient_cmp(sfnt_psubfam, n.preferred_styles()) - - # Lenience: Allow for dropping unneeded prefered stuff: - # New (sub)family is same as old preferred sub(family) - if t4 and n.preferred_family() == '' and sfnt_pfam.lower() == n.family().lower(): - t4 = False - if t5 and n.preferred_styles() == '' and sfnt_psubfam.lower() == n.subfamily().lower(): - t5 = False - - if t1 or t2 or t3 or t4 or t5: - m1 = '+'; m2 = '-' - else: - m1 = ''; m2 = '' - if not n.parse_ok: - m1 = '!' - t1_ = 'X' if t1 else '' - t2_ = 'X' if t2 else '' - t3_ = 'X' if t3 else '' - t4_ = 'X' if t4 else '' - t5_ = 'X' if t5 else '' - - o1 = format_names(False, m1, fullfile, t1_, n.fullname(), t2_, n.family(), t3_, n.subfamily(), t4_, n.preferred_family(), t5_, n.preferred_styles()) - o2 = format_names(False, m2, fullfile, '', sfnt_full, '', sfnt_fam, '', sfnt_subfam, '', sfnt_pfam, '', sfnt_psubfam) - - if len(m1): - issue_files += 1 - if not o1 in known_issues or not o2 in known_issues: - new_issues.writelines(['#### AUTOGENERATED\n', o1 + '\n', o2 + '\n']) - else: - known_files += 1 - idx = known_issues.index(o1) - 1 # should be the index of the explanation line - if known_issues[idx][0] != '#': - sys.exit('Problem with known issues file, line', known_issues.index(o1)) - new_issues.writelines([known_issues[idx] + '\n', o1 + '\n', o2 + '\n']) - # remove known_issue triplet - known_issues.pop(idx) - known_issues.pop(idx) - known_issues.pop(idx) - - print(o1, o2, sep='\n') - -print('Fonts with different name rendering: {}/{} ({}/{} are in known_issues)'.format(issue_files, all_files, known_files, issue_files)) - -if len(known_issues) > 0: - print('There are {} lines not needed in known_issues, appending commented out in new known_issues'.format(len(known_issues))) - new_issues.write('\n#### The following lines are not needed anymore\n\n') - for l in known_issues: - new_issues.writelines([' ', l, '\n']) - -new_issues.close() diff --git a/bin/scripts/name_parser/name_parser_test1.known_issues b/bin/scripts/name_parser/name_parser_test1.known_issues deleted file mode 100644 index a81fec82c..000000000 --- a/bin/scripts/name_parser/name_parser_test1.known_issues +++ /dev/null @@ -1,207 +0,0 @@ -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|3270Medium.otf | | 3270 Medium |X| 3270 Medium |X| Regular |X| 3270 |X| Medium --|3270Medium.otf | | 3270-Medium | | IBM 3270 | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|3270Medium.ttf | | 3270 Medium |X| 3270 Medium |X| Regular |X| 3270 |X| Medium --|3270Medium.ttf | | 3270-Medium | | IBM 3270 | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, obviously for them Medium is Regular -+|3270Narrow.otf | | 3270 Narrow | | 3270 Narrow |X| Regular |X| 3270 |X| Narrow --|3270Narrow.otf | | 3270 Narrow | | IBM 3270 Narrow | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, obviously for them Medium is Regular -+|3270Narrow.ttf | | 3270 Narrow | | 3270 Narrow |X| Regular |X| 3270 |X| Narrow --|3270Narrow.ttf | | 3270 Narrow | | IBM 3270 Narrow | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, obviously for them Medium is Regular -+|3270SemiNarrow.otf | | 3270 SemiNarrow | | 3270 SemiNarrow |X| Regular |X| 3270 |X| SemiNarrow --|3270SemiNarrow.otf | | 3270 Semi-Narrow | | IBM 3270 Semi-Narrow | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, obviously for them Medium is Regular -+|3270SemiNarrow.ttf | | 3270 SemiNarrow | | 3270 SemiNarrow |X| Regular |X| 3270 |X| SemiNarrow --|3270SemiNarrow.ttf | | 3270 Semi-Narrow | | IBM 3270 Semi-Narrow | | Medium | | | | -#### Drop special/unexpected name in Typographic Family -+|Anonymice Powerline.ttf | | Anonymice Powerline | | Anonymice Powerline | | Regular |X| | | --|Anonymice Powerline.ttf | | Anonymice Powerline | | Anonymice Powerline | | Regular | | Anonymous Pro for Powerline | | Regular -#### Font file says it is italic and not oblique -+|VeraMono-Bold-Italic.ttf | | Bitstream Vera Sans Mono Bold Italic | | Bitstream Vera Sans Mono |X| Bold Italic | | | | --|VeraMono-Bold-Italic.ttf | | Bitstream Vera Sans Mono Bold Oblique | | Bitstream Vera Sans Mono | | Bold Oblique | | | | -#### Font file says it is italic and not oblique -+|VeraMono-Italic.ttf | | Bitstream Vera Sans Mono Italic | | Bitstream Vera Sans Mono |X| Italic | | | | --|VeraMono-Italic.ttf | | Bitstream Vera Sans Mono Oblique | | Bitstream Vera Sans Mono | | Oblique | | | | -#### Limit Subfamiliy to 4 standard styles, Roman is usually equivalent to Regular -+|VeraMono.ttf | | Bitstream Vera Sans Mono | | Bitstream Vera Sans Mono |X| Regular | | | | --|VeraMono.ttf | | Bitstream Vera Sans Mono | | Bitstream Vera Sans Mono | | Roman | | | | -#### Limit Subfamiliy to 4 standard styles, Book is usually equivalent to Regular -!|DaddyTimeMono.ttf | | DaddyTimeMono | | DaddyTimeMono |X| Regular | | | | --|DaddyTimeMono.ttf | | DaddyTimeMono | | DaddyTimeMono | | Book | | DaddyTimeMono | | -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|DejaVuSansMono-BoldOblique.ttf | | DejaVu Sans Mono Bold Oblique |X| DejaVu Sans Mono Oblique |X| Bold Italic |X| DejaVu Sans Mono |X| Bold Oblique --|DejaVuSansMono-BoldOblique.ttf | | DejaVu Sans Mono Bold Oblique | | DejaVu Sans Mono | | Bold Oblique | | | | -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|DejaVuSansMono-Oblique.ttf | | DejaVu Sans Mono Oblique |X| DejaVu Sans Mono Oblique |X| Italic |X| DejaVu Sans Mono |X| Oblique --|DejaVuSansMono-Oblique.ttf | | DejaVu Sans Mono Oblique | | DejaVu Sans Mono | | Oblique | | | | -#### Limit Subfamiliy to 4 standard styles, Book is usually equivalent to Regular -+|DejaVuSansMono.ttf | | DejaVu Sans Mono | | DejaVu Sans Mono |X| Regular | | | | --|DejaVuSansMono.ttf | | DejaVu Sans Mono | | DejaVu Sans Mono | | Book | | | | -#### No need to have Typographic Family/Subfamily if it is identical to normal Family/Subfamily -+|FuraMono-Bold Powerline.otf | | Fura Mono Powerline Bold | | Fura Mono Powerline | | Bold |X| | | --|FuraMono-Bold Powerline.otf | | Fira Mono Bold for Powerline | | Fira Mono for Powerline | | Bold | | Fira Mono for Powerline | | -#### False positive, move Powerline from end to middle, Powerline will be dropped when patching anyhow -+|FuraMono-Medium Powerline.otf | | Fura Mono Powerline Medium | | Fura Mono Powerline Medium | | Regular |X| Fura Mono Powerline | | Medium --|FuraMono-Medium Powerline.otf | | Fira Mono Medium for Powerline | | Fira Mono Medium for Powerline | | Regular | | Fira Mono Medium for Powerline | | Medium -#### No need to have Typographic Family/Subfamily if it is identical to normal Family/Subfamily -+|FuraMono-Regular Powerline.otf | | Fura Mono Powerline | | Fura Mono Powerline | | Regular |X| | | --|FuraMono-Regular Powerline.otf | | Fira Mono | | Fira Mono for Powerline | | Regular | | Fira Mono for Powerline | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|gohufont-11.ttf | | Gohufont 11 | | Gohufont 11 |X| Regular | | | | --|gohufont-11.ttf | | GohuFont | | GohuFont | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|gohufont-14.ttf | | Gohufont 14 | | Gohufont 14 |X| Regular | | | | --|gohufont-14.ttf | | GohuFont | | GohuFont | | 14 | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|gohufont-uni-11.ttf | | Gohufont uni-11 | | Gohufont uni-11 |X| Regular | | | | --|gohufont-uni-11.ttf | | GohuFont | | GohuFont | | Medium | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|gohufont-uni-14.ttf | | Gohufont uni-14 | | Gohufont uni-14 |X| Regular | | | | --|gohufont-uni-14.ttf | | GohuFont | | GohuFont | | uni-14 | | | | -#### Limit Subfamiliy to 4 standard styles, Normal is usually equivalent to Regular -+|heavy_data.ttf | | Heavy Data | | Heavy Data |X| Regular | | | | --|heavy_data.ttf | | Heavy Data | | Heavy Data | | Normal | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|Hermit-light.otf | | Hermit Light |X| Hermit Light |X| Regular |X| Hermit |X| Light --|Hermit-light.otf | | Hermit Light | | Hermit | | light | | | | -#### Limit Subfamiliy to 4 standard styles, put Subfamily name into Family instead -+|Hermit-medium.otf | | Hermit Medium |X| Hermit Medium |X| Regular |X| Hermit |X| Medium --|Hermit-medium.otf | | Hermit Medium | | Hermit | | medium | | | | -#### Limit Subfamiliy to 4 standard styles, put Bold into Subfamily name -+|iAWriterDuospace-Bold.otf | | iA Writer Duospace Bold |X| iA Writer Duospace |X| Bold | | | | --|iAWriterDuospace-Bold.otf | | iA Writer Duospace Bold | | iA Writer Duospace Bold | | Regular | | iA Writer Duospace | | Bold -#### Limit Subfamiliy to 4 standard styles, put Bold into Subfamily name -+|iAWriterDuospace-Bold.ttf | | iA Writer Duospace Bold |X| iA Writer Duospace |X| Bold | | | | --|iAWriterDuospace-Bold.ttf | | iA Writer Duospace Bold | | iA Writer Duospace Bold | | Regular | | iA Writer Duospace | | Bold -#### Limit Subfamiliy to 4 standard styles, put Bold into Subfamily name -+|iAWriterDuospace-BoldItalic.otf | | iA Writer Duospace Bold Italic |X| iA Writer Duospace |X| Bold Italic | | |X| --|iAWriterDuospace-BoldItalic.otf | | iA Writer Duospace BoldItalic | | iA Writer Duospace Bold | | Italic | | iA Writer Duospace | | BoldItalic -#### Limit Subfamiliy to 4 standard styles, put Bold into Subfamily name -+|iAWriterDuospace-BoldItalic.ttf | | iA Writer Duospace Bold Italic |X| iA Writer Duospace |X| Bold Italic | | |X| --|iAWriterDuospace-BoldItalic.ttf | | iA Writer Duospace BoldItalic | | iA Writer Duospace Bold | | Italic | | iA Writer Duospace | | BoldItalic -#### Ignore naming part Text -+|IBMPlexMono-TextItalic.ttf | | IBM Plex Mono Text Italic | | IBM Plex Mono Text | | Italic |X| |X| --|IBMPlexMono-TextItalic.ttf | | IBM Plex Mono Text Italic | | IBM Plex Mono Text | | Italic | | IBM Plex Mono | | Text Italic -#### Ignore naming part Text -+|IBMPlexMono-Text.ttf | | IBM Plex Mono Text | | IBM Plex Mono Text | | Regular |X| |X| --|IBMPlexMono-Text.ttf | | IBM Plex Mono Text | | IBM Plex Mono Text | | Regular | | IBM Plex Mono | | Text -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-boldoblique.ttf | | Iosevka Bold Oblique | | Iosevka Oblique |X| Bold Italic | | Iosevka | | Bold Oblique --|iosevka-boldoblique.ttf | | Iosevka Bold Oblique | | Iosevka Oblique | | Bold | | Iosevka | | Bold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-boldoblique.ttf | | Iosevka Term Bold Oblique | | Iosevka Term Oblique |X| Bold Italic | | Iosevka Term | | Bold Oblique --|iosevka-term-boldoblique.ttf | | Iosevka Term Bold Oblique | | Iosevka Term Oblique | | Bold | | Iosevka Term | | Bold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-extraboldoblique.ttf | | Iosevka ExtraBold Oblique | | Iosevka ExtraBold Oblique |X| Italic | | Iosevka | | ExtraBold Oblique --|iosevka-extraboldoblique.ttf | | Iosevka Extrabold Oblique | | Iosevka Extrabold Oblique | | Regular | | Iosevka | | Extrabold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-extraboldoblique.ttf | | Iosevka Term ExtraBold Oblique | | Iosevka Term ExtraBold Oblique |X| Italic | | Iosevka Term | | ExtraBold Oblique --|iosevka-term-extraboldoblique.ttf | | Iosevka Term Extrabold Oblique | | Iosevka Term Extrabold Oblique | | Regular | | Iosevka Term | | Extrabold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-extralightoblique.ttf | | Iosevka ExtraLight Oblique | | Iosevka ExtraLight Oblique |X| Italic | | Iosevka | | ExtraLight Oblique --|iosevka-extralightoblique.ttf | | Iosevka Extralight Oblique | | Iosevka Extralight Oblique | | Regular | | Iosevka | | Extralight Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-extralightoblique.ttf | | Iosevka Term ExtraLight Oblique | | Iosevka Term ExtraLight Obliqu |X| Italic | | Iosevka Term | | ExtraLight Oblique --|iosevka-term-extralightoblique.ttf | | Iosevka Term Extralight Oblique | | Iosevka Term XLtObl | | Regular | | Iosevka Term | | Extralight Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-heavyoblique.ttf | | Iosevka Heavy Oblique | | Iosevka Heavy Oblique |X| Italic | | Iosevka | | Heavy Oblique --|iosevka-heavyoblique.ttf | | Iosevka Heavy Oblique | | Iosevka Heavy Oblique | | Regular | | Iosevka | | Heavy Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-heavyoblique.ttf | | Iosevka Term Heavy Oblique | | Iosevka Term Heavy Oblique |X| Italic | | Iosevka Term | | Heavy Oblique --|iosevka-term-heavyoblique.ttf | | Iosevka Term Heavy Oblique | | Iosevka Term Heavy Oblique | | Regular | | Iosevka Term | | Heavy Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-lightoblique.ttf | | Iosevka Light Oblique | | Iosevka Light Oblique |X| Italic | | Iosevka | | Light Oblique --|iosevka-lightoblique.ttf | | Iosevka Light Oblique | | Iosevka Light Oblique | | Regular | | Iosevka | | Light Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-lightoblique.ttf | | Iosevka Term Light Oblique | | Iosevka Term Light Oblique |X| Italic | | Iosevka Term | | Light Oblique --|iosevka-term-lightoblique.ttf | | Iosevka Term Light Oblique | | Iosevka Term Light Oblique | | Regular | | Iosevka Term | | Light Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-mediumoblique.ttf | | Iosevka Medium Oblique | | Iosevka Medium Oblique |X| Italic | | Iosevka | | Medium Oblique --|iosevka-mediumoblique.ttf | | Iosevka Medium Oblique | | Iosevka Medium Oblique | | Regular | | Iosevka | | Medium Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-mediumoblique.ttf | | Iosevka Term Medium Oblique | | Iosevka Term Medium Oblique |X| Italic | | Iosevka Term | | Medium Oblique --|iosevka-term-mediumoblique.ttf | | Iosevka Term Medium Oblique | | Iosevka Term Medium Oblique | | Regular | | Iosevka Term | | Medium Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-oblique.ttf | | Iosevka Oblique | | Iosevka Oblique |X| Italic | | Iosevka | | Oblique --|iosevka-oblique.ttf | | Iosevka Oblique | | Iosevka Oblique | | Regular | | Iosevka | | Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-oblique.ttf | | Iosevka Term Oblique | | Iosevka Term Oblique |X| Italic | | Iosevka Term | | Oblique --|iosevka-term-oblique.ttf | | Iosevka Term Oblique | | Iosevka Term Oblique | | Regular | | Iosevka Term | | Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-semiboldoblique.ttf | | Iosevka SemiBold Oblique | | Iosevka SemiBold Oblique |X| Italic | | Iosevka | | SemiBold Oblique --|iosevka-semiboldoblique.ttf | | Iosevka Semibold Oblique | | Iosevka Semibold Oblique | | Regular | | Iosevka | | Semibold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-semiboldoblique.ttf | | Iosevka Term SemiBold Oblique | | Iosevka Term SemiBold Oblique |X| Italic | | Iosevka Term | | SemiBold Oblique --|iosevka-term-semiboldoblique.ttf | | Iosevka Term Semibold Oblique | | Iosevka Term Semibold Oblique | | Regular | | Iosevka Term | | Semibold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-term-thinoblique.ttf | | Iosevka Term Thin Oblique | | Iosevka Term Thin Oblique |X| Italic | | Iosevka Term | | Thin Oblique --|iosevka-term-thinoblique.ttf | | Iosevka Term Thin Oblique | | Iosevka Term Thin Oblique | | Regular | | Iosevka Term | | Thin Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead (and mark it Italic so applications know it's slanted) & Keep the grouping in Typographic Family -+|iosevka-thinoblique.ttf | | Iosevka Thin Oblique | | Iosevka Thin Oblique |X| Italic | | Iosevka | | Thin Oblique --|iosevka-thinoblique.ttf | | Iosevka Thin Oblique | | Iosevka Thin Oblique | | Regular | | Iosevka | | Thin Oblique -#### Limit Subfamiliy to 4 standard styles, put Retina into Family instead -+|Monoid-Retina.ttf | | Monoid Retina |X| Monoid Retina |X| Regular |X| Monoid |X| Retina --|Monoid-Retina.ttf | | Monoid Retina | | Monoid | | Retina | | | | -#### Remove nonstandard BoldItalic typographic style -+|mononoki-BoldItalic.ttf | | Mononoki Bold Italic | | Mononoki | | Bold Italic | | |X| --|mononoki-BoldItalic.ttf | | mononoki Bold Italic | | mononoki | | Bold Italic | | | | BoldItalic -#### They say SemiBold is the same as Light Bold, we can not generalize this and make SemiBold self standing -+|overpass-mono-semibold.otf | | Overpass Mono SemiBold |X| Overpass Mono SemiBold |X| Regular | | Overpass Mono | | SemiBold --|overpass-mono-semibold.otf | | Overpass Mono SemiBold | | Overpass Mono Light | | Bold | | Overpass Mono | | SemiBold -#### They say SemiBold is the same as Light Bold, we can not generalize this and make SemiBold self standing -+|overpass-semibold.otf | | Overpass SemiBold |X| Overpass SemiBold |X| Regular | | Overpass | | SemiBold --|overpass-semibold.otf | | Overpass SemiBold | | Overpass Light | | Bold | | Overpass | | SemiBold -#### Nonstandard font naming: fullname shall be same as familyname plus more -+|ProFontIIx.ttf | | ProFont IIx |X| ProFont IIx | | Regular | | | | --|ProFontIIx.ttf | | ProFont IIx | | ProFontIIx | | Regular | | | | -#### We are fine here (just list with exclamation mark because it is a potentially problematic case) -!|ProFontWindows.ttf | | ProFontWindows | | ProFontWindows | | Regular | | | | - |ProFontWindows.ttf | | ProFontWindows | | ProFontWindows | | Regular | | | | -#### No mention of TT in file name -+|ProggyCleanCE.ttf |X| ProggyClean CE |X| ProggyClean CE | | Regular | | | | --|ProggyCleanCE.ttf | | ProggyCleanTT CE | | ProggyCleanTT CE | | Regular | | | | -#### No mention of TT in file name -!|ProggyClean.ttf |X| ProggyClean |X| ProggyClean | | Regular | | | | --|ProggyClean.ttf | | ProggyCleanTT | | ProggyCleanTT | | Regular | | | | -#### No mention of TT in file name -+|ProggyCleanSZ.ttf |X| ProggyClean SZ |X| ProggyClean SZ | | Regular | | | | --|ProggyCleanSZ.ttf | | ProggyCleanTTSZ | | ProggyCleanTTSZ | | Regular | | | | -#### They put one name part in parens -+|TerminusTTF-Bold Italic-4.40.1.ttf |X| Terminus TTF Bold Italic |X| Terminus TTF | | Bold Italic | | | | --|TerminusTTF-Bold Italic-4.40.1.ttf | | Terminus (TTF) Bold Italic | | Terminus (TTF) | | Bold Italic | | | | -#### They put one name part in parens -+|TerminusTTF-Bold-4.40.1.ttf |X| Terminus TTF Bold |X| Terminus TTF | | Bold | | | | --|TerminusTTF-Bold-4.40.1.ttf | | Terminus (TTF) Bold | | Terminus (TTF) | | Bold | | | | -#### They put one name part in parens -+|TerminusTTF-Italic-4.40.1.ttf |X| Terminus TTF Italic |X| Terminus TTF | | Italic | | | | --|TerminusTTF-Italic-4.40.1.ttf | | Terminus (TTF) Italic | | Terminus (TTF) | | Italic | | | | -#### They put one name part in parens -+|TerminusTTF-4.40.1.ttf |X| Terminus TTF |X| Terminus TTF |X| Regular | | | | --|TerminusTTF-4.40.1.ttf | | Terminus (TTF) | | Terminus (TTF) | | Medium | | | | -#### Ubuntu Condensed should be grouped with Ubuntu, that they didn't is an error? -+|Ubuntu-C.ttf | | Ubuntu Condensed | | Ubuntu Condensed | | Regular |X| Ubuntu |X| Condensed --|Ubuntu-C.ttf | | Ubuntu Condensed | | Ubuntu Condensed | | Regular | | Ubuntu Condensed | | Regular -#### They say Medium is the same as Light Bold, we can not generalize this and make Medium self standing -+|Ubuntu-MI.ttf | | Ubuntu Medium Italic |X| Ubuntu Medium |X| Italic | | Ubuntu | | Medium Italic --|Ubuntu-MI.ttf | | Ubuntu Medium Italic | | Ubuntu Light | | Bold Italic | | Ubuntu | | Medium Italic -#### They say Medium is the same as Light Bold, we can not generalize this and make Medium self standing -+|Ubuntu-M.ttf | | Ubuntu Medium |X| Ubuntu Medium |X| Regular | | Ubuntu | | Medium --|Ubuntu-M.ttf | | Ubuntu Medium | | Ubuntu Light | | Bold | | Ubuntu | | Medium -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead -+|VictorMono-ExtraLightOblique.ttf | | Victor Mono ExtraLight Oblique |X| Victor Mono ExtraLight Oblique | | Italic | | Victor Mono | | ExtraLight Oblique --|VictorMono-ExtraLightOblique.ttf | | Victor Mono ExtraLight Oblique | | Victor Mono ExtraLight | | Italic | | Victor Mono | | ExtraLight Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead -+|VictorMono-LightOblique.ttf | | Victor Mono Light Oblique |X| Victor Mono Light Oblique | | Italic | | Victor Mono | | Light Oblique --|VictorMono-LightOblique.ttf | | Victor Mono Light Oblique | | Victor Mono Light | | Italic | | Victor Mono | | Light Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead -+|VictorMono-MediumOblique.ttf | | Victor Mono Medium Oblique |X| Victor Mono Medium Oblique | | Italic | | Victor Mono | | Medium Oblique --|VictorMono-MediumOblique.ttf | | Victor Mono Medium Oblique | | Victor Mono Medium | | Italic | | Victor Mono | | Medium Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead -+|VictorMono-SemiBoldOblique.ttf | | Victor Mono SemiBold Oblique |X| Victor Mono SemiBold Oblique | | Italic | | Victor Mono | | SemiBold Oblique --|VictorMono-SemiBoldOblique.ttf | | Victor Mono SemiBold Oblique | | Victor Mono SemiBold | | Italic | | Victor Mono | | SemiBold Oblique -#### Limit Subfamiliy to 4 standard styles, put Oblique into Family instead -+|VictorMono-ThinOblique.ttf | | Victor Mono Thin Oblique |X| Victor Mono Thin Oblique | | Italic | | Victor Mono | | Thin Oblique --|VictorMono-ThinOblique.ttf | | Victor Mono Thin Oblique | | Victor Mono Thin | | Italic | | Victor Mono | | Thin Oblique diff --git a/bin/scripts/name_parser/name_parser_test2 b/bin/scripts/name_parser/name_parser_test2 deleted file mode 100755 index 8a4620460..000000000 --- a/bin/scripts/name_parser/name_parser_test2 +++ /dev/null @@ -1,195 +0,0 @@ -#!/usr/bin/env python3 -# coding=utf8 - -import sys -import re -import os.path -import glob -import subprocess -import fontforge - -###### Some helpers - -def get_sfnt_dict(font): - """Extract SFNT table as nice dict""" - d = [] - for i, el in enumerate(font.sfnt_names): - d += [(el[1], el[2])] - return dict(d) - -def extract_sfnt_data(sfnt): - """Get the usual names out of the SFNT table""" - sfnt_full = sfnt['Fullname'] - sfnt_fam = sfnt['Family'] - sfnt_subfam = sfnt['SubFamily'] - sfnt_pfam = sfnt['Preferred Family'] if 'Preferred Family' in sfnt else '' - sfnt_psubfam = sfnt['Preferred Styles'] if 'Preferred Styles' in sfnt else '' - return (sfnt_full, sfnt_fam, sfnt_subfam, sfnt_pfam, sfnt_psubfam) - -def format_names(header, *stuff): - """Unify outputs (with header)""" - f = '{:1.1}|{:50.50} |{:1.1}| {:65.65} |{:1.1}| {:55.55} |{:1.1}| {:30.30} |{:1.1}| {:40.40} |{:1.1}| {:.40}' - if header: - d = '------------------------------------------------------------' - return f.format(*stuff) + '\n' + f.format('', d, d, d, d, d, d, d, d, d, d, d) - return f.format(*stuff).rstrip() - -def lenient_cmp(s1, s2, allow_shuffle_all): - """Compare two font name (parts) but be a bit lenient ;->""" - # We do not care about: - # - Case - # - "Display" vs "Disp" (in Noto) - # Allow for "IBM 3278" name - s = [ s1, s2 ] - for i in range(2): - # Usually given transform from 'their' to 'our' style - s[i] = s[i].lower() - s[i] = re.sub(r'\bdisp\b', 'display', s[i]) # Noto - s[i] = s[i].replace('ibm 3270', '3270') # 3270 - s[i] = s[i].replace('3270-', '3270 ') # 3270 - s[i] = s[i].replace('lekton-', 'lekton ') # Lekton - s[i] = s[i].replace('semi-narrow', 'seminarrow') # 3270 - s[i] = s[i].replace('bolditalic', 'bold italic') - s[i] = re.sub(r'\bfor\b', '', s[i]) # Meslo, Monofur - s[i] = re.sub(r'\bpowerline\b', '', s[i]) # Meslo, Monofur - s[i] = s[i].replace('fira mono', 'fura mono') # Obviously someone forgot to rename the fonts in Fira/ - s[i] = s[i].replace('aurulentsansmono-', 'aurulent sans mono ') # Aurulent fullname oddity - s[i] = s[i].replace('mononoki-', 'mononoki ') # Mononoki has somtimes a dash - s[i] = re.sub(r'\br\b', 'regular', s[i]) # Nonstandard style in Agave - s[i] = re.sub(r'(bitstream vera sans mono.*) oblique', r'\1 italic', s[i]) # They call it Oblique but the filename says Italic - s[i] = re.sub(r'gohufont (uni-)?(11|14)', 'gohufont', s[i]) # They put the 'name' into the subfamily/weight - s[i] = s[i].replace('xltobl', 'extralight oblique') # Iosevka goes inventing names - s[i] = re.sub(r'proggyclean(?!TT)( ?)', 'proggycleantt\1', s[i]) # ProggyClean has no TT in filename - - s[i] = re.sub(r' +', ' ', s[i]).strip() - - p = [] - for e in s: - parts = e.split(' ') - if not allow_shuffle_all and len(parts) > 2: - tail = parts[1:] - tail.sort() - parts = [parts[0]] + tail - elif len(parts) > 1: - parts.sort() - p.append(' '.join(parts)) - return p[0] == p[1] - -###### Let's go! - -if len(sys.argv) < 2: - print('Usage: {} font_name [font_name ...]\n'.format(sys.argv[0])) - sys.exit(1) - -font_patcher = os.path.realpath(os.path.dirname(os.path.realpath(sys.argv[0]))+'/../../../font-patcher') - -existing_font = glob.glob('*.[ot]tf') -if len(existing_font): - sys.exit('Would overwrite any existing *.ttf and *.otf, bailing out (remove them first)') - -try: - with open(sys.argv[0] + '.known_issues', 'r') as f: - known_issues = f.read().splitlines() - # known_issues = [line.rstrip() for line in known_issues] - print('Found {:.0f} known issues'.format(len(known_issues) / 4)) # approx ;) -except OSError: - print('Can not open known_issues file') - known_issues = [] -new_issues = open(sys.argv[0] + '.known_issues.new', 'w') - -print('Examining {} font files'.format(len(sys.argv) - 1)) -all_files = 0 -issue_files = 0 -known_files = 0 - -print(format_names(True, '', 'Filename', '', 'Fullname', '', 'Family', '', 'Subfamily', '', 'Typogr. Family', '', 'Typogr. Subfamily')) - -for filename in sys.argv[1:]: - data = [] - fullfile = os.path.basename(filename) - fname = os.path.splitext(fullfile)[0] - if fname == 'NotoColorEmoji': - continue # font is not patchable - if fname in [ 'iosevka-heavyoblique', 'iosevka-term-heavyoblique', 'iosevka-mediumoblique', 'Lilex-VF' ]: - continue # Patch resultant font not openable - log = open("log", "w") - log.write(filename) - log.close() - - for option in ['--makegroups', '']: - cmd = ['fontforge', '--script', font_patcher, '--powerline', option, filename ] - cmd = [ c for c in cmd if len(c) ] - ff = subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, encoding='utf8') - #ff = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding='utf8') - if ff.returncode: - print("\nERROR running command:\n {}\n\n{}".format(' '.join(cmd), ''))#ff.stdout)) - sys.exit(1) - new_font = glob.glob('*.[ot]tf') - font = fontforge.open(new_font[0], 1) - sfnt = get_sfnt_dict(font) - font.close() - os.system('rm -f *.[ot]tf') - (sfnt_full, sfnt_fam, sfnt_subfam, sfnt_pfam, sfnt_psubfam) = extract_sfnt_data(sfnt) - - data.append(( os.path.basename(new_font[0]), sfnt_full, sfnt_fam, sfnt_subfam, sfnt_pfam, sfnt_psubfam )) - - all_files += 1 - - t1 = not lenient_cmp(data[0][1], data[1][1], False) - t2 = not lenient_cmp(data[0][2], data[1][2], False) - t3 = not lenient_cmp(data[0][3], data[1][3], True) - t4 = not lenient_cmp(data[0][4], data[1][4], False) - t5 = not lenient_cmp(data[0][5], data[1][5], True) - - # Lenience: Allow for dropping unneeded prefered stuff: - # New (sub)family is same as old preferred sub(family) - if t4 and data[0][4] == '' and data[1][4].lower() == data[0][2].lower(): - t4 = False - if t5 and data[0][5] == '' and data[1][5].lower() == data[0][3].lower(): - t5 = False - - if t1 or t2 or t3 or t4 or t5: - m1 = '+'; m2 = '-' - else: - m1 = ''; m2 = '' - t1_ = 'X' if t1 else '' - t2_ = 'X' if t2 else '' - t3_ = 'X' if t3 else '' - t4_ = 'X' if t4 else '' - t5_ = 'X' if t5 else '' - - o1 = format_names(False, m1, data[0][0], t1_, data[0][1], t2_, data[0][2], t3_, data[0][3], t4_, data[0][4], t5_, data[0][5]) - o2 = format_names(False, m2, data[1][0], '', data[1][1], '', data[1][2], '', data[1][3], '', data[1][4], '', data[1][5]) - - if len(m1): - issue_files += 1 - font = fontforge.open(filename, 1) - sfnt = get_sfnt_dict(font) - font.close() - (sfnt_full, sfnt_fam, sfnt_subfam, sfnt_pfam, sfnt_psubfam) = extract_sfnt_data(sfnt) - o3 = format_names(False, '>', os.path.basename(filename), '', sfnt_full, '', sfnt_fam, '', sfnt_subfam, '', sfnt_pfam, '', sfnt_psubfam) - if not o1 in known_issues or not o2 in known_issues: - new_issues.writelines(['#### AUTOGENERATED\n', o3 + '\n', o1 + '\n', o2 + '\n']) - else: - known_files += 1 - idx = known_issues.index(o1) - 2 # should be the index of the explanation line - if known_issues[idx][0] != '#': - sys.exit('Problem with known issues file, line', known_issues.index(o1)) - new_issues.writelines([known_issues[idx] + '\n', o3 + '\n', o1 + '\n', o2 + '\n']) - # remove known_issue triplet - known_issues.pop(idx) - known_issues.pop(idx) - known_issues.pop(idx) - known_issues.pop(idx) - - print(o1, o2, sep='\n') - -print('Fonts with different name rendering: {}/{} ({}/{} are in known_issues)'.format(issue_files, all_files, known_files, issue_files)) - -if len(known_issues) > 0: - print('There are {} lines not needed in known_issues, appending commented out in new known_issues'.format(len(known_issues))) - new_issues.write('\n#### The following lines are not needed anymore\n\n') - for l in known_issues: - new_issues.writelines([' ', l, '\n']) - -new_issues.close() diff --git a/bin/scripts/name_parser/name_parser_test2.known_issues b/bin/scripts/name_parser/name_parser_test2.known_issues deleted file mode 100644 index 746562a07..000000000 --- a/bin/scripts/name_parser/name_parser_test2.known_issues +++ /dev/null @@ -1,1748 +0,0 @@ -#### Add weight/style to family [1] ->|3270Medium.otf | | 3270-Medium | | IBM 3270 | | Medium | | | | -+|3270 Nerd Font Medium.otf | | 3270 Nerd Font Medium |X| 3270 Nerd Font Medium |X| Regular |X| 3270 Nerd Font |X| Medium --|3270-Medium Nerd Font.otf | | 3270-Medium Nerd Font | | 3270Medium Nerd Font | | Medium | | 3270Medium Nerd Font | | -#### Add weight/style to family [1] ->|3270Medium.ttf | | 3270-Medium | | IBM 3270 | | Medium | | | | -+|3270 Nerd Font Medium.ttf | | 3270 Nerd Font Medium |X| 3270 Nerd Font Medium |X| Regular |X| 3270 Nerd Font |X| Medium --|3270-Medium Nerd Font.ttf | | 3270-Medium Nerd Font | | 3270Medium Nerd Font | | Medium | | 3270Medium Nerd Font | | -#### Add weight/style to family [1] ->|3270Narrow.otf | | 3270 Narrow | | IBM 3270 Narrow | | Medium | | | | -+|3270 Nerd Font Narrow.otf | | 3270 Nerd Font Narrow |X| 3270 Nerd Font Narrow |X| Regular |X| 3270 Nerd Font |X| Narrow --|3270 Narrow Nerd Font.otf | | 3270 Narrow Nerd Font | | 3270Narrow Nerd Font | | Medium | | 3270Narrow Nerd Font | | -#### Add weight/style to family [1] ->|3270Narrow.ttf | | 3270 Narrow | | IBM 3270 Narrow | | Medium | | | | -+|3270 Nerd Font Narrow.ttf | | 3270 Nerd Font Narrow |X| 3270 Nerd Font Narrow |X| Regular |X| 3270 Nerd Font |X| Narrow --|3270 Narrow Nerd Font.ttf | | 3270 Narrow Nerd Font | | 3270Narrow Nerd Font | | Medium | | 3270Narrow Nerd Font | | -#### Add weight/style to family [1] ->|3270SemiNarrow.otf | | 3270 Semi-Narrow | | IBM 3270 Semi-Narrow | | Medium | | | | -+|3270 Nerd Font SemiNarrow.otf | | 3270 Nerd Font SemiNarrow |X| 3270 Nerd Font SemiNarrow |X| Regular |X| 3270 Nerd Font |X| SemiNarrow --|3270 Semi-Narrow Nerd Font.otf | | 3270 Semi-Narrow Nerd Font | | 3270SemiNarrow Nerd Font | | Medium | | 3270SemiNarrow Nerd Font | | -#### Add weight/style to family [1] ->|3270SemiNarrow.ttf | | 3270 Semi-Narrow | | IBM 3270 Semi-Narrow | | Medium | | | | -+|3270 Nerd Font SemiNarrow.ttf | | 3270 Nerd Font SemiNarrow |X| 3270 Nerd Font SemiNarrow |X| Regular |X| 3270 Nerd Font |X| SemiNarrow --|3270 Semi-Narrow Nerd Font.ttf | | 3270 Semi-Narrow Nerd Font | | 3270SemiNarrow Nerd Font | | Medium | | 3270SemiNarrow Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|Anonymice Powerline.ttf | | Anonymice Powerline | | Anonymice Powerline | | Regular | | Anonymous Pro for Powerline | | Regular -+|Anonymice Nerd Font.ttf | | Anonymice Nerd Font | | Anonymice Nerd Font |X| Regular | | | | --|Anonymice Nerd Font.ttf | | Anonymice Nerd Font | | Anonymice Nerd Font | | Book | | Anonymice Nerd Font | | Regular -#### Put Oblique into own SubFamily (and mark it as italic) [11] ->|VeraMono-Bold-Italic.ttf | | Bitstream Vera Sans Mono Bold Oblique | | Bitstream Vera Sans Mono | | Bold Oblique | | | | -+|Bitstream Vera Sans Mono Nerd Font Bold Oblique.tt | | Bitstream Vera Sans Mono Nerd Font Bold Oblique |X| BitstreamVeraSansMono Nerd Font Oblique |X| Bold Italic | | BitstreamVeraSansMono Nerd Font |X| Bold Oblique --|Bitstream Vera Sans Mono Bold Oblique Nerd Font.tt | | Bitstream Vera Sans Mono Bold Oblique Nerd Font | | BitstreamVeraSansMono Nerd Font | | Bold Oblique | | BitstreamVeraSansMono Nerd Font | | -#### Put Oblique into own SubFamily (and mark it as italic) [11] ->|VeraMono-Italic.ttf | | Bitstream Vera Sans Mono Oblique | | Bitstream Vera Sans Mono | | Oblique | | | | -+|Bitstream Vera Sans Mono Nerd Font Oblique.ttf | | Bitstream Vera Sans Mono Nerd Font Oblique |X| BitstreamVeraSansMono Nerd Font Oblique |X| Italic | | BitstreamVeraSansMono Nerd Font |X| Oblique --|Bitstream Vera Sans Mono Oblique Nerd Font.ttf | | Bitstream Vera Sans Mono Oblique Nerd Font | | BitstreamVeraSansMono Nerd Font | | Oblique | | BitstreamVeraSansMono Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|VeraMono.ttf | | Bitstream Vera Sans Mono | | Bitstream Vera Sans Mono | | Roman | | | | -+|Bitstream Vera Sans Mono Nerd Font.ttf | | Bitstream Vera Sans Mono Nerd Font | | BitstreamVeraSansMono Nerd Font |X| Regular | | | | --|Bitstream Vera Sans Mono Nerd Font.ttf | | Bitstream Vera Sans Mono Nerd Font | | BitstreamVeraSansMono Nerd Font | | Roman | | BitstreamVeraSansMono Nerd Font | | -#### Add weight/style to family [1] ->|CascadiaCode-ExtraLightItalic.otf | | Cascadia Code ExtraLight Italic | | Cascadia Code ExtraLight | | Italic | | Cascadia Code | | ExtraLight Italic -+|Caskaydia Cove Nerd Font ExtraLight Italic.otf | | Caskaydia Cove Nerd Font ExtraLight Italic |X| CaskaydiaCove Nerd Font ExtraLight | | Italic | | CaskaydiaCove Nerd Font | | ExtraLight Italic --|Caskaydia Cove ExtraLight Italic Nerd Font.otf | | Caskaydia Cove ExtraLight Italic Nerd Font | | Cascadia Code ExtraLight | | Italic | | CaskaydiaCove Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|CascadiaCode-ExtraLight.otf | | Cascadia Code ExtraLight | | Cascadia Code ExtraLight | | Regular | | Cascadia Code | | ExtraLight -+|Caskaydia Cove Nerd Font ExtraLight.otf | | Caskaydia Cove Nerd Font ExtraLight |X| CaskaydiaCove Nerd Font ExtraLight | | Regular | | CaskaydiaCove Nerd Font | | ExtraLight --|Caskaydia Cove ExtraLight Nerd Font.otf | | Caskaydia Cove ExtraLight Nerd Font | | Cascadia Code ExtraLight | | Regular | | CaskaydiaCove Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|CascadiaCode-LightItalic.otf | | Cascadia Code Light Italic | | Cascadia Code Light | | Italic | | Cascadia Code | | Light Italic -+|Caskaydia Cove Nerd Font Light Italic.otf | | Caskaydia Cove Nerd Font Light Italic |X| CaskaydiaCove Nerd Font Light | | Italic | | CaskaydiaCove Nerd Font | | Light Italic --|Caskaydia Cove Light Italic Nerd Font.otf | | Caskaydia Cove Light Italic Nerd Font | | Cascadia Code Light | | Italic | | CaskaydiaCove Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|CascadiaCode-Light.otf | | Cascadia Code Light | | Cascadia Code Light | | Regular | | Cascadia Code | | Light -+|Caskaydia Cove Nerd Font Light.otf | | Caskaydia Cove Nerd Font Light |X| CaskaydiaCove Nerd Font Light | | Regular | | CaskaydiaCove Nerd Font | | Light --|Caskaydia Cove Light Nerd Font.otf | | Caskaydia Cove Light Nerd Font | | Cascadia Code Light | | Regular | | CaskaydiaCove Nerd Font | | Light -#### Add weight/style to family [1] ->|CascadiaCode-SemiBoldItalic.otf | | Cascadia Code SemiBold Italic | | Cascadia Code SemiBold | | Italic | | Cascadia Code | | SemiBold Italic -+|Caskaydia Cove Nerd Font SemiBold Italic.otf | | Caskaydia Cove Nerd Font SemiBold Italic |X| CaskaydiaCove Nerd Font SemiBold | | Italic | | CaskaydiaCove Nerd Font | | SemiBold Italic --|Caskaydia Cove SemiBold Italic Nerd Font.otf | | Caskaydia Cove SemiBold Italic Nerd Font | | Cascadia Code SemiBold | | Italic | | CaskaydiaCove Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|CascadiaCode-SemiBold.otf | | Cascadia Code SemiBold | | Cascadia Code SemiBold | | Regular | | Cascadia Code | | SemiBold -+|Caskaydia Cove Nerd Font SemiBold.otf | | Caskaydia Cove Nerd Font SemiBold |X| CaskaydiaCove Nerd Font SemiBold | | Regular | | CaskaydiaCove Nerd Font | | SemiBold --|Caskaydia Cove SemiBold Nerd Font.otf | | Caskaydia Cove SemiBold Nerd Font | | Cascadia Code SemiBold | | Regular | | CaskaydiaCove Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|CascadiaCode-SemiLightItalic.otf | | Cascadia Code SemiLight Italic | | Cascadia Code SemiLight | | Italic | | Cascadia Code | | SemiLight Italic -+|Caskaydia Cove Nerd Font SemiLight Italic.otf | | Caskaydia Cove Nerd Font SemiLight Italic |X| CaskaydiaCove Nerd Font SemiLight | | Italic | | CaskaydiaCove Nerd Font | | SemiLight Italic --|Caskaydia Cove SemiLight Italic Nerd Font.otf | | Caskaydia Cove SemiLight Italic Nerd Font | | Cascadia Code SemiLight | | Italic | | CaskaydiaCove Nerd Font | | SemiLight Italic -#### Add weight/style to family [1] ->|CascadiaCode-SemiLight.otf | | Cascadia Code SemiLight | | Cascadia Code SemiLight | | Regular | | Cascadia Code | | SemiLight -+|Caskaydia Cove Nerd Font SemiLight.otf | | Caskaydia Cove Nerd Font SemiLight |X| CaskaydiaCove Nerd Font SemiLight | | Regular | | CaskaydiaCove Nerd Font | | SemiLight --|Caskaydia Cove SemiLight Nerd Font.otf | | Caskaydia Cove SemiLight Nerd Font | | Cascadia Code SemiLight | | Regular | | CaskaydiaCove Nerd Font | | SemiLight -#### Change regular-equivalent name to Regular [4] ->|Code New Roman-Regular.otf | | Code New Roman | | Code New Roman | | Regular | | | | -+|Code New Roman Nerd Font.otf | | Code New Roman Nerd Font | | CodeNewRoman Nerd Font |X| Regular | | | | --|Code New Roman Nerd Font.otf | | Code New Roman Nerd Font | | CodeNewRoman Nerd Font | | Book | | CodeNewRoman Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|DaddyTimeMono.ttf | | DaddyTimeMono | | DaddyTimeMono | | Book | | DaddyTimeMono | | -+|DaddyTimeMono Nerd Font.ttf | | DaddyTimeMono Nerd Font | | DaddyTimeMono Nerd Font |X| Regular | | | | --|DaddyTimeMono Nerd Font.ttf | | DaddyTimeMono Nerd Font | | DaddyTimeMono Nerd Font | | Book | | DaddyTimeMono Nerd Font | | -#### Put Oblique into own SubFamily (and mark it as italic) [11] ->|DejaVuSansMono-BoldOblique.ttf | | DejaVu Sans Mono Bold Oblique | | DejaVu Sans Mono | | Bold Oblique | | | | -+|DejaVu Sans Mono Nerd Font Bold Oblique.ttf | | DejaVu Sans Mono Nerd Font Bold Oblique |X| DejaVuSansMono Nerd Font Oblique |X| Bold Italic | | DejaVuSansMono Nerd Font |X| Bold Oblique --|DejaVu Sans Mono Bold Oblique Nerd Font.ttf | | DejaVu Sans Mono Bold Oblique Nerd Font | | DejaVuSansMono Nerd Font | | Bold Oblique | | DejaVuSansMono Nerd Font | | -#### Put Oblique into own SubFamily (and mark it as italic) [11] ->|DejaVuSansMono-Oblique.ttf | | DejaVu Sans Mono Oblique | | DejaVu Sans Mono | | Oblique | | | | -+|DejaVu Sans Mono Nerd Font Oblique.ttf | | DejaVu Sans Mono Nerd Font Oblique |X| DejaVuSansMono Nerd Font Oblique |X| Italic | | DejaVuSansMono Nerd Font |X| Oblique --|DejaVu Sans Mono Oblique Nerd Font.ttf | | DejaVu Sans Mono Oblique Nerd Font | | DejaVuSansMono Nerd Font | | Oblique | | DejaVuSansMono Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|DejaVuSansMono.ttf | | DejaVu Sans Mono | | DejaVu Sans Mono | | Book | | | | -+|DejaVu Sans Mono Nerd Font.ttf | | DejaVu Sans Mono Nerd Font | | DejaVuSansMono Nerd Font |X| Regular | | | | --|DejaVu Sans Mono Nerd Font.ttf | | DejaVu Sans Mono Nerd Font | | DejaVuSansMono Nerd Font | | Book | | DejaVuSansMono Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|Droid Sans Mono for Powerline.otf | | Droid Sans Mono for Powerline | | Droid Sans Mono for Powerline | | Regular | | Droid Sans Mono for Powerline | | -+|Droid Sans Mono Nerd Font.otf | | Droid Sans Mono Nerd Font | | DroidSansMono Nerd Font |X| Regular | | | | --|Droid Sans Mono Nerd Font.otf | | Droid Sans Mono Nerd Font | | DroidSansMono Nerd Font | | Book | | DroidSansMono Nerd Font | | -#### Add weight/style to family [1] ->|FiraCode-Light.ttf | | Fira Code Light | | Fira Code Light | | Regular | | Fira Code | | Light -+|Fira Code Nerd Font Light.ttf | | Fira Code Nerd Font Light |X| FiraCode Nerd Font Light | | Regular | | FiraCode Nerd Font | | Light --|Fira Code Light Nerd Font.ttf | | Fira Code Light Nerd Font | | FiraCode Nerd Font | | Regular | | FiraCode Nerd Font | | Light -#### Add weight/style to family [1] ->|FiraCode-Medium.ttf | | Fira Code Medium | | Fira Code Medium | | Regular | | Fira Code | | Medium -+|Fira Code Nerd Font Medium.ttf | | Fira Code Nerd Font Medium |X| FiraCode Nerd Font Medium | | Regular | | FiraCode Nerd Font | | Medium --|Fira Code Medium Nerd Font.ttf | | Fira Code Medium Nerd Font | | FiraCode Nerd Font | | Regular | | FiraCode Nerd Font | | Medium -#### Add weight/style to family [1] ->|FiraCode-Retina.ttf | | Fira Code Retina | | Fira Code Retina | | Regular | | Fira Code | | Retina -+|Fira Code Nerd Font Retina.ttf | | Fira Code Nerd Font Retina |X| FiraCode Nerd Font Retina | | Regular | | FiraCode Nerd Font | | Retina --|Fira Code Retina Nerd Font.ttf | | Fira Code Retina Nerd Font | | FiraCode Nerd Font | | Regular | | FiraCode Nerd Font | | Retina -#### Add weight/style to family [1] ->|FiraCode-SemiBold.ttf | | Fira Code SemiBold | | Fira Code SemiBold | | Regular | | Fira Code | | SemiBold -+|Fira Code Nerd Font SemiBold.ttf | | Fira Code Nerd Font SemiBold |X| FiraCode Nerd Font SemiBold | | Regular | | FiraCode Nerd Font | | SemiBold --|Fira Code SemiBold Nerd Font.ttf | | Fira Code SemiBold Nerd Font | | FiraCode Nerd Font | | Regular | | FiraCode Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|FuraMono-Bold Powerline.otf | | Fira Mono Bold for Powerline | | Fira Mono for Powerline | | Bold | | Fira Mono for Powerline | | -+|Fira Mono Nerd Font Bold.otf | | Fira Mono Nerd Font Bold |X| FiraMono Nerd Font | | Bold |X| | | --|Fura Mono Bold Nerd Font.otf | | Fura Mono Bold Nerd Font | | FuraMono Nerd Font | | Bold | | FuraMono Nerd Font | | -#### Add weight/style to family [1] ->|FuraMono-Medium Powerline.otf | | Fira Mono Medium for Powerline | | Fira Mono Medium for Powerline | | Regular | | Fira Mono Medium for Powerline | | Medium -+|Fira Mono Nerd Font Medium.otf | | Fira Mono Nerd Font Medium |X| FiraMono Nerd Font Medium | | Regular |X| FiraMono Nerd Font | | Medium --|Fura Mono Medium Nerd Font.otf | | Fura Mono Medium Nerd Font | | FuraMono Nerd Font | | Regular | | FuraMono Nerd Font | | Medium -#### Add weight/style to family [1] ->|FuraMono-Regular Powerline.otf | | Fira Mono | | Fira Mono for Powerline | | Regular | | Fira Mono for Powerline | | -+|Fira Mono Nerd Font Regular.otf |X| Fira Mono Nerd Font Regular |X| FiraMono Nerd Font | | Regular |X| | | --|Fura Mono Regular Nerd Font.otf | | Fira Mono | | FuraMono Nerd Font | | Regular | | FuraMono Nerd Font | | -#### Add weight/style to family [1] ->|gohufont-11.ttf | | GohuFont | | GohuFont | | Medium | | | | -+|GohuFont 11 Nerd Font.ttf | | GohuFont 11 Nerd Font | | GohuFont 11 Nerd Font |X| Regular |X| | | --|GohuFont Nerd Font.ttf | | GohuFont Nerd Font | | GohuFont Nerd Font | | Medium | | GohuFont Nerd Font | | -#### Add weight/style to family [1] ->|gohufont-14.ttf | | GohuFont | | GohuFont | | 14 | | | | -+|GohuFont 14 Nerd Font.ttf | | GohuFont 14 Nerd Font | | GohuFont 14 Nerd Font |X| Regular |X| | | --|GohuFont Nerd Font.ttf | | GohuFont Nerd Font | | GohuFont Nerd Font | | 14 | | GohuFont Nerd Font | | -#### Add weight/style to family [1] ->|gohufont-uni-11.ttf | | GohuFont | | GohuFont | | Medium | | | | -+|GohuFont uni-11 Nerd Font.ttf | | GohuFont uni-11 Nerd Font | | GohuFont uni-11 Nerd Font |X| Regular |X| | | --|GohuFont Nerd Font.ttf | | GohuFont Nerd Font | | GohuFont Nerd Font | | Medium | | GohuFont Nerd Font | | -#### Add weight/style to family [1] ->|gohufont-uni-14.ttf | | GohuFont | | GohuFont | | uni-14 | | | | -+|GohuFont uni-14 Nerd Font.ttf | | GohuFont uni-14 Nerd Font | | GohuFont uni-14 Nerd Font |X| Regular |X| | | --|GohuFont Nerd Font.ttf | | GohuFont Nerd Font | | GohuFont Nerd Font | | uni-14 | | GohuFont Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|Go-Mono.ttf | | Go Mono | | Go Mono | | Regular | | | | -+|Go Mono Nerd Font.ttf | | Go Mono Nerd Font | | GoMono Nerd Font |X| Regular | | | | --|Go Mono Nerd Font.ttf | | Go Mono Nerd Font | | GoMono Nerd Font | | Book | | GoMono Nerd Font | | -#### Add weight/style to family [1] ->|Hasklig-Black.otf | | Hasklig Black | | Hasklig Black | | Regular | | Hasklig | | Black -+|Hasklug Nerd Font Black.otf | | Hasklug Nerd Font Black |X| Hasklug Nerd Font Black | | Regular | | Hasklug Nerd Font | | Black --|Hasklug Black Nerd Font.otf | | Hasklug Black Nerd Font | | Hasklig Black | | Regular | | Hasklug Nerd Font | | Black -#### Add weight/style to family [1] ->|Hasklig-BlackIt.otf | | Hasklig Black Italic | | Hasklig Black | | Italic | | Hasklig | | Black Italic -+|Hasklug Nerd Font Black Italic.otf | | Hasklug Nerd Font Black Italic |X| Hasklug Nerd Font Black | | Italic | | Hasklug Nerd Font | | Black Italic --|Hasklug Black Italic Nerd Font.otf | | Hasklug Black Italic Nerd Font | | Hasklig Black | | Italic | | Hasklug Nerd Font | | Black Italic -#### Add weight/style to family [1] ->|Hasklig-ExtraLight.otf | | Hasklig ExtraLight | | Hasklig ExtraLight | | Regular | | Hasklig | | ExtraLight -+|Hasklug Nerd Font ExtraLight.otf | | Hasklug Nerd Font ExtraLight |X| Hasklug Nerd Font ExtraLight | | Regular | | Hasklug Nerd Font | | ExtraLight --|Hasklug ExtraLight Nerd Font.otf | | Hasklug ExtraLight Nerd Font | | Hasklig ExtraLight | | Regular | | Hasklug Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|Hasklig-ExtraLightIt.otf | | Hasklig ExtraLight Italic | | Hasklig ExtraLight | | Italic | | Hasklig | | ExtraLight Italic -+|Hasklug Nerd Font ExtraLight Italic.otf | | Hasklug Nerd Font ExtraLight Italic |X| Hasklug Nerd Font ExtraLight | | Italic | | Hasklug Nerd Font | | ExtraLight Italic --|Hasklug ExtraLight Italic Nerd Font.otf | | Hasklug ExtraLight Italic Nerd Font | | Hasklig ExtraLight | | Italic | | Hasklug Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|Hasklig-Light.otf | | Hasklig Light | | Hasklig Light | | Regular | | Hasklig | | Light -+|Hasklug Nerd Font Light.otf | | Hasklug Nerd Font Light |X| Hasklug Nerd Font Light | | Regular | | Hasklug Nerd Font | | Light --|Hasklug Light Nerd Font.otf | | Hasklug Light Nerd Font | | Hasklig Light | | Regular | | Hasklug Nerd Font | | Light -#### Add weight/style to family [1] ->|Hasklig-LightIt.otf | | Hasklig Light Italic | | Hasklig Light | | Italic | | Hasklig | | Light Italic -+|Hasklug Nerd Font Light Italic.otf | | Hasklug Nerd Font Light Italic |X| Hasklug Nerd Font Light | | Italic | | Hasklug Nerd Font | | Light Italic --|Hasklug Light Italic Nerd Font.otf | | Hasklug Light Italic Nerd Font | | Hasklig Light | | Italic | | Hasklug Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|Hasklig-Medium.otf | | Hasklig Medium | | Hasklig Medium | | Regular | | Hasklig | | Medium -+|Hasklug Nerd Font Medium.otf | | Hasklug Nerd Font Medium |X| Hasklug Nerd Font Medium | | Regular | | Hasklug Nerd Font | | Medium --|Hasklug Medium Nerd Font.otf | | Hasklug Medium Nerd Font | | Hasklig Medium | | Regular | | Hasklug Nerd Font | | Medium -#### Add weight/style to family [1] ->|Hasklig-MediumIt.otf | | Hasklig Medium Italic | | Hasklig Medium | | Italic | | Hasklig | | Medium Italic -+|Hasklug Nerd Font Medium Italic.otf | | Hasklug Nerd Font Medium Italic |X| Hasklug Nerd Font Medium | | Italic | | Hasklug Nerd Font | | Medium Italic --|Hasklug Medium Italic Nerd Font.otf | | Hasklug Medium Italic Nerd Font | | Hasklig Medium | | Italic | | Hasklug Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|Hasklig-Semibold.otf | | Hasklig Semibold | | Hasklig Semibold | | Regular | | Hasklig | | Semibold -+|Hasklug Nerd Font SemiBold.otf | | Hasklug Nerd Font SemiBold |X| Hasklug Nerd Font SemiBold | | Regular | | Hasklug Nerd Font | | SemiBold --|Hasklug Semibold Nerd Font.otf | | Hasklug Semibold Nerd Font | | Hasklig Semibold | | Regular | | Hasklug Nerd Font | | Semibold -#### Add weight/style to family [1] ->|Hasklig-SemiboldIt.otf | | Hasklig Semibold Italic | | Hasklig Semibold | | Italic | | Hasklig | | Semibold Italic -+|Hasklug Nerd Font SemiBold Italic.otf | | Hasklug Nerd Font SemiBold Italic |X| Hasklug Nerd Font SemiBold | | Italic | | Hasklug Nerd Font | | SemiBold Italic --|Hasklug Semibold Italic Nerd Font.otf | | Hasklug Semibold Italic Nerd Font | | Hasklig Semibold | | Italic | | Hasklug Nerd Font | | Semibold Italic -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|heavy_data.ttf | | Heavy Data | | Heavy Data | | Normal | | | | -+|Heavy Data Nerd Font.ttf | | Heavy Data Nerd Font | | HeavyData Nerd Font |X| Regular | | | | --|Heavy Data Nerd Font.ttf | | Heavy Data Nerd Font | | HeavyData Nerd Font | | Normal | | HeavyData Nerd Font | | -#### Add weight/style to family [1] ->|Hermit-light.otf | | Hermit Light | | Hermit | | light | | | | -+|Hurmit Nerd Font Light.otf | | Hurmit Nerd Font Light |X| Hurmit Nerd Font Light |X| Regular | | Hurmit Nerd Font |X| Light --|Hurmit Light Nerd Font.otf | | Hurmit Light Nerd Font | | Hurmit Nerd Font | | light | | Hurmit Nerd Font | | -#### Add weight/style to family [1] ->|Hermit-medium.otf | | Hermit Medium | | Hermit | | medium | | | | -+|Hurmit Nerd Font Medium.otf | | Hurmit Nerd Font Medium |X| Hurmit Nerd Font Medium |X| Regular | | Hurmit Nerd Font |X| Medium --|Hurmit Medium Nerd Font.otf | | Hurmit Medium Nerd Font | | Hurmit Nerd Font | | medium | | Hurmit Nerd Font | | -#### Drop Regular from Style [14] ->|iAWriterDuoS-Regular.ttf | | iA Writer Duo S Regular | | iA Writer Duo S | | Regular | | | | -+|iM Writing Duo S Nerd Font.ttf |X| iM Writing Duo S Nerd Font | | iMWritingDuoS Nerd Font | | Regular | | | | --|iM Writing Duo S Regular Nerd Font.ttf | | iM Writing Duo S Regular Nerd Font | | iMWritingDuoS Nerd Font | | Regular | | iMWritingDuoS Nerd Font | | -#### Bold / Bold-Italic are just a styles of Regular [13] ->|iAWriterDuospace-Bold.otf | | iA Writer Duospace Bold | | iA Writer Duospace Bold | | Regular | | iA Writer Duospace | | Bold -+|iM Writing Duospace Nerd Font Bold.otf | | iM Writing Duospace Nerd Font Bold | | iMWritingDuospace Nerd Font |X| Bold | | | | --|iM Writing Duospace Bold Nerd Font.otf | | iM Writing Duospace Bold Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | iMWritingDuospace Nerd Font | | Bold -#### Bold / Bold-Italic are just a styles of Regular [13] ->|iAWriterDuospace-Bold.ttf | | iA Writer Duospace Bold | | iA Writer Duospace Bold | | Regular | | iA Writer Duospace | | Bold -+|iM Writing Duospace Nerd Font Bold.ttf | | iM Writing Duospace Nerd Font Bold | | iMWritingDuospace Nerd Font |X| Bold | | | | --|iM Writing Duospace Bold Nerd Font.ttf | | iM Writing Duospace Bold Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | iMWritingDuospace Nerd Font | | Bold -#### Bold / Bold-Italic are just a styles of Regular [13] ->|iAWriterDuospace-BoldItalic.otf | | iA Writer Duospace BoldItalic | | iA Writer Duospace Bold | | Italic | | iA Writer Duospace | | BoldItalic -+|iM Writing Duospace Nerd Font Bold Italic.otf | | iM Writing Duospace Nerd Font Bold Italic | | iMWritingDuospace Nerd Font |X| Bold Italic | | |X| --|iM Writing Duospace BoldItalic Nerd Font.otf | | iM Writing Duospace BoldItalic Nerd Font | | iMWritingDuospace Nerd Font | | Italic | | iMWritingDuospace Nerd Font | | BoldItalic -#### Bold / Bold-Italic are just a styles of Regular [13] ->|iAWriterDuospace-BoldItalic.ttf | | iA Writer Duospace BoldItalic | | iA Writer Duospace Bold | | Italic | | iA Writer Duospace | | BoldItalic -+|iM Writing Duospace Nerd Font Bold Italic.ttf | | iM Writing Duospace Nerd Font Bold Italic | | iMWritingDuospace Nerd Font |X| Bold Italic | | |X| --|iM Writing Duospace BoldItalic Nerd Font.ttf | | iM Writing Duospace BoldItalic Nerd Font | | iMWritingDuospace Nerd Font | | Italic | | iMWritingDuospace Nerd Font | | BoldItalic -#### Drop Regular from Style [14] ->|iAWriterDuospace-Regular.otf | | iA Writer Duospace Regular | | iA Writer Duospace | | Regular | | | | -+|iM Writing Duospace Nerd Font.otf |X| iM Writing Duospace Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | | | --|iM Writing Duospace Regular Nerd Font.otf | | iM Writing Duospace Regular Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | iMWritingDuospace Nerd Font | | -#### Drop Regular from Style [14] ->|iAWriterDuospace-Regular.ttf | | iA Writer Duospace Regular | | iA Writer Duospace | | Regular | | | | -+|iM Writing Duospace Nerd Font.ttf |X| iM Writing Duospace Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | | | --|iM Writing Duospace Regular Nerd Font.ttf | | iM Writing Duospace Regular Nerd Font | | iMWritingDuospace Nerd Font | | Regular | | iMWritingDuospace Nerd Font | | -#### Drop Regular from Style [14] ->|iAWriterMonoS-Regular.ttf | | iA Writer Mono S Regular | | iA Writer Mono S | | Regular | | | | -+|iM Writing Mono S Nerd Font.ttf |X| iM Writing Mono S Nerd Font | | iMWritingMonoS Nerd Font | | Regular | | | | --|iM Writing Mono S Regular Nerd Font.ttf | | iM Writing Mono S Regular Nerd Font | | iMWritingMonoS Nerd Font | | Regular | | iMWritingMonoS Nerd Font | | -#### Drop Regular from Style [14] ->|iAWriterQuattroS-Regular.ttf | | iA Writer Quattro S Regular | | iA Writer Quattro S | | Regular | | | | -+|iM Writing Quattro S Nerd Font.ttf |X| iM Writing Quattro S Nerd Font | | iMWritingQuattroS Nerd Font | | Regular | | | | --|iM Writing Quattro S Regular Nerd Font.ttf | | iM Writing Quattro S Regular Nerd Font | | iMWritingQuattroS Nerd Font | | Regular | | iMWritingQuattroS Nerd Font | | -#### Add weight/style to family [1] ->|IBMPlexMono-ExtraLightItalic.ttf | | IBM Plex Mono ExtraLight Italic | | IBM Plex Mono ExtraLight | | Italic | | IBM Plex Mono | | ExtraLight Italic -+|Blex Mono Nerd Font ExtraLight Italic.ttf | | Blex Mono Nerd Font ExtraLight Italic |X| BlexMono Nerd Font ExtraLight | | Italic | | BlexMono Nerd Font | | ExtraLight Italic --|Blex Mono ExtraLight Italic Nerd Font.ttf | | Blex Mono ExtraLight Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|IBMPlexMono-ExtraLight.ttf | | IBM Plex Mono ExtraLight | | IBM Plex Mono ExtraLight | | Regular | | IBM Plex Mono | | ExtraLight -+|Blex Mono Nerd Font ExtraLight.ttf | | Blex Mono Nerd Font ExtraLight |X| BlexMono Nerd Font ExtraLight | | Regular | | BlexMono Nerd Font | | ExtraLight --|Blex Mono ExtraLight Nerd Font.ttf | | Blex Mono ExtraLight Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|IBMPlexMono-LightItalic.ttf | | IBM Plex Mono Light Italic | | IBM Plex Mono Light | | Italic | | IBM Plex Mono | | Light Italic -+|Blex Mono Nerd Font Light Italic.ttf | | Blex Mono Nerd Font Light Italic |X| BlexMono Nerd Font Light | | Italic | | BlexMono Nerd Font | | Light Italic --|Blex Mono Light Italic Nerd Font.ttf | | Blex Mono Light Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|IBMPlexMono-Light.ttf | | IBM Plex Mono Light | | IBM Plex Mono Light | | Regular | | IBM Plex Mono | | Light -+|Blex Mono Nerd Font Light.ttf | | Blex Mono Nerd Font Light |X| BlexMono Nerd Font Light | | Regular | | BlexMono Nerd Font | | Light --|Blex Mono Light Nerd Font.ttf | | Blex Mono Light Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | Light -#### Add weight/style to family [1] ->|IBMPlexMono-MediumItalic.ttf | | IBM Plex Mono Medium Italic | | IBM Plex Mono Medium | | Italic | | IBM Plex Mono | | Medium Italic -+|Blex Mono Nerd Font Medium Italic.ttf | | Blex Mono Nerd Font Medium Italic |X| BlexMono Nerd Font Medium | | Italic | | BlexMono Nerd Font | | Medium Italic --|Blex Mono Medium Italic Nerd Font.ttf | | Blex Mono Medium Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|IBMPlexMono-Medium.ttf | | IBM Plex Mono Medium | | IBM Plex Mono Medium | | Regular | | IBM Plex Mono | | Medium -+|Blex Mono Nerd Font Medium.ttf | | Blex Mono Nerd Font Medium |X| BlexMono Nerd Font Medium | | Regular | | BlexMono Nerd Font | | Medium --|Blex Mono Medium Nerd Font.ttf | | Blex Mono Medium Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | Medium -#### Drop unneeded Typogr.Family/Typogr.Style [5] ->|IBMPlexMono-Regular.ttf | | IBM Plex Mono | | IBM Plex Mono | | Regular | | | | -+|Blex Mono Nerd Font.ttf | | Blex Mono Nerd Font | | BlexMono Nerd Font |X| Regular | | | | --|Blex Mono Nerd Font.ttf | | Blex Mono Nerd Font | | BlexMono Nerd Font | | Book | | BlexMono Nerd Font | | -#### Add weight/style to family [1] ->|IBMPlexMono-SemiBoldItalic.ttf | | IBM Plex Mono SemiBold Italic | | IBM Plex Mono SemiBold | | Italic | | IBM Plex Mono | | SemiBold Italic -+|Blex Mono Nerd Font SemiBold Italic.ttf | | Blex Mono Nerd Font SemiBold Italic |X| BlexMono Nerd Font SemiBold | | Italic | | BlexMono Nerd Font | | SemiBold Italic --|Blex Mono SemiBold Italic Nerd Font.ttf | | Blex Mono SemiBold Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|IBMPlexMono-SemiBold.ttf | | IBM Plex Mono SemiBold | | IBM Plex Mono SemiBold | | Regular | | IBM Plex Mono | | SemiBold -+|Blex Mono Nerd Font SemiBold.ttf | | Blex Mono Nerd Font SemiBold |X| BlexMono Nerd Font SemiBold | | Regular | | BlexMono Nerd Font | | SemiBold --|Blex Mono SemiBold Nerd Font.ttf | | Blex Mono SemiBold Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | SemiBold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] ->|IBMPlexMono-TextItalic.ttf | | IBM Plex Mono Text Italic | | IBM Plex Mono Text | | Italic | | IBM Plex Mono | | Text Italic -+|Blex Mono Text Nerd Font Italic.ttf | | Blex Mono Text Nerd Font Italic |X| BlexMono Text Nerd Font | | Italic |X| |X| --|Blex Mono Text Italic Nerd Font.ttf | | Blex Mono Text Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | Text Italic -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] ->|IBMPlexMono-Text.ttf | | IBM Plex Mono Text | | IBM Plex Mono Text | | Regular | | IBM Plex Mono | | Text -+|Blex Mono Text Nerd Font.ttf | | Blex Mono Text Nerd Font |X| BlexMono Text Nerd Font | | Regular |X| |X| --|Blex Mono Text Nerd Font.ttf | | Blex Mono Text Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | Text -#### Add weight/style to family [1] ->|IBMPlexMono-ThinItalic.ttf | | IBM Plex Mono Thin Italic | | IBM Plex Mono Thin | | Italic | | IBM Plex Mono | | Thin Italic -+|Blex Mono Nerd Font Thin Italic.ttf | | Blex Mono Nerd Font Thin Italic |X| BlexMono Nerd Font Thin | | Italic | | BlexMono Nerd Font | | Thin Italic --|Blex Mono Thin Italic Nerd Font.ttf | | Blex Mono Thin Italic Nerd Font | | BlexMono Nerd Font | | Italic | | BlexMono Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|IBMPlexMono-Thin.ttf | | IBM Plex Mono Thin | | IBM Plex Mono Thin | | Regular | | IBM Plex Mono | | Thin -+|Blex Mono Nerd Font Thin.ttf | | Blex Mono Nerd Font Thin |X| BlexMono Nerd Font Thin | | Regular | | BlexMono Nerd Font | | Thin --|Blex Mono Thin Nerd Font.ttf | | Blex Mono Thin Nerd Font | | BlexMono Nerd Font | | Regular | | BlexMono Nerd Font | | Thin -#### Drop unneeded Typogr.Family/Typogr.Style [5] ->|Inconsolata-LGC-Bold.ttf | | Inconsolata LGC Bold | | Inconsolata LGC | | Bold | | | | -+|Inconsolata LGC Nerd Font Bold.ttf | | Inconsolata LGC Nerd Font Bold |X| Inconsolata LGC Nerd Font | | Bold |X| | | --|Inconsolata LGC Bold Nerd Font.ttf | | Inconsolata LGC Bold Nerd Font | | InconsolataLGC Nerd Font | | Bold | | InconsolataLGC Nerd Font | | -#### Drop unneeded Typogr.Family/Typogr.Style [5] ->|Inconsolata-LGC-BoldItalic.ttf | | Inconsolata LGC Bold Italic | | Inconsolata LGC | | BoldItalic | | | | -+|Inconsolata LGC Nerd Font Bold Italic.ttf | | Inconsolata LGC Nerd Font Bold Italic |X| Inconsolata LGC Nerd Font | | Bold Italic |X| | | --|Inconsolata LGC Bold Italic Nerd Font.ttf | | Inconsolata LGC Bold Italic Nerd Font | | InconsolataLGC Nerd Font | | BoldItalic | | InconsolataLGC Nerd Font | | -#### Drop unneeded Typogr.Family/Typogr.Style [5] ->|Inconsolata-LGC-Italic.ttf | | Inconsolata LGC Italic | | Inconsolata LGC | | Italic | | | | -+|Inconsolata LGC Nerd Font Italic.ttf | | Inconsolata LGC Nerd Font Italic |X| Inconsolata LGC Nerd Font | | Italic |X| | | --|Inconsolata LGC Italic Nerd Font.ttf | | Inconsolata LGC Italic Nerd Font | | InconsolataLGC Nerd Font | | Italic | | InconsolataLGC Nerd Font | | -#### Drop unneeded Typogr.Family/Typogr.Style [5] Change regular-equivalent name to Regular [4] ->|Inconsolata-LGC.ttf | | Inconsolata LGC | | Inconsolata LGC | | Regular | | | | -+|Inconsolata LGC Nerd Font.ttf | | Inconsolata LGC Nerd Font |X| Inconsolata LGC Nerd Font |X| Regular |X| | | --|Inconsolata LGC Nerd Font.ttf | | Inconsolata LGC Nerd Font | | InconsolataLGC Nerd Font | | Medium | | InconsolataLGC Nerd Font | | -#### 'Term' is missing from Family [12] Drop unneeded Typogr.Family/Typogr.Style [5] ->|iosevka-term-bold.ttf | | Iosevka Term Bold | | Iosevka Term | | Bold | | Iosevka Term | | Bold -+|Iosevka Term Nerd Font Bold.ttf | | Iosevka Term Nerd Font Bold |X| IosevkaTerm Nerd Font | | Bold |X| | | --|Iosevka Term Bold Nerd Font.ttf | | Iosevka Term Bold Nerd Font | | Iosevka Nerd Font | | Bold | | Iosevka Nerd Font | | Bold -#### 'Term' is missing from Family [12] Drop unneeded Typogr.Family/Typogr.Style [5] ->|iosevka-term-bolditalic.ttf | | Iosevka Term Bold Italic | | Iosevka Term | | Bold Italic | | Iosevka Term | | Bold Italic -+|Iosevka Term Nerd Font Bold Italic.ttf | | Iosevka Term Nerd Font Bold Italic |X| IosevkaTerm Nerd Font | | Bold Italic |X| | | --|Iosevka Term Bold Italic Nerd Font.ttf | | Iosevka Term Bold Italic Nerd Font | | Iosevka Nerd Font | | Bold Italic | | Iosevka Nerd Font | | Bold Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-boldoblique.ttf | | Iosevka Bold Oblique | | Iosevka Oblique | | Bold | | Iosevka | | Bold Oblique -+|Iosevka Nerd Font Bold Oblique.ttf | | Iosevka Nerd Font Bold Oblique |X| Iosevka Nerd Font Oblique |X| Bold Italic | | Iosevka Nerd Font | | Bold Oblique --|Iosevka Bold Oblique Nerd Font.ttf | | Iosevka Bold Oblique Nerd Font | | Iosevka Nerd Font | | Bold | | Iosevka Nerd Font | | Bold Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-boldoblique.ttf | | Iosevka Term Bold Oblique | | Iosevka Term Oblique | | Bold | | Iosevka Term | | Bold Oblique -+|Iosevka Term Nerd Font Bold Oblique.ttf | | Iosevka Term Nerd Font Bold Oblique |X| IosevkaTerm Nerd Font Oblique |X| Bold Italic |X| IosevkaTerm Nerd Font | | Bold Oblique --|Iosevka Term Bold Oblique Nerd Font.ttf | | Iosevka Term Bold Oblique Nerd Font | | Iosevka Nerd Font | | Bold | | Iosevka Nerd Font | | Bold Oblique -#### Add weight/style to family [1] ->|iosevka-extrabold.ttf | | Iosevka Extrabold | | Iosevka Extrabold | | Regular | | Iosevka | | Extrabold -+|Iosevka Nerd Font ExtraBold.ttf | | Iosevka Nerd Font ExtraBold |X| Iosevka Nerd Font ExtraBold | | Regular | | Iosevka Nerd Font | | ExtraBold --|Iosevka Extrabold Nerd Font.ttf | | Iosevka Extrabold Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extrabold -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-extrabold.ttf | | Iosevka Term Extrabold | | Iosevka Term Extrabold | | Regular | | Iosevka Term | | Extrabold -+|Iosevka Term Nerd Font ExtraBold.ttf | | Iosevka Term Nerd Font ExtraBold |X| IosevkaTerm Nerd Font ExtraBold | | Regular |X| IosevkaTerm Nerd Font | | ExtraBold --|Iosevka Term Extrabold Nerd Font.ttf | | Iosevka Term Extrabold Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extrabold -#### Add weight/style to family [1] ->|iosevka-extrabolditalic.ttf | | Iosevka Extrabold Italic | | Iosevka Extrabold | | Italic | | Iosevka | | Extrabold Italic -+|Iosevka Nerd Font ExtraBold Italic.ttf | | Iosevka Nerd Font ExtraBold Italic |X| Iosevka Nerd Font ExtraBold | | Italic | | Iosevka Nerd Font | | ExtraBold Italic --|Iosevka Extrabold Italic Nerd Font.ttf | | Iosevka Extrabold Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Extrabold Italic -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-extrabolditalic.ttf | | Iosevka Term Extrabold Italic | | Iosevka Term Extrabold | | Italic | | Iosevka Term | | Extrabold Italic -+|Iosevka Term Nerd Font ExtraBold Italic.ttf | | Iosevka Term Nerd Font ExtraBold Italic |X| IosevkaTerm Nerd Font ExtraBold | | Italic |X| IosevkaTerm Nerd Font | | ExtraBold Italic --|Iosevka Term Extrabold Italic Nerd Font.ttf | | Iosevka Term Extrabold Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Extrabold Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-extraboldoblique.ttf | | Iosevka Extrabold Oblique | | Iosevka Extrabold Oblique | | Regular | | Iosevka | | Extrabold Oblique -+|Iosevka Nerd Font ExtraBold Oblique.ttf | | Iosevka Nerd Font ExtraBold Oblique |X| Iosevka Nerd Font ExtraBold Oblique |X| Italic | | Iosevka Nerd Font | | ExtraBold Oblique --|Iosevka Extrabold Oblique Nerd Font.ttf | | Iosevka Extrabold Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extrabold Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-extraboldoblique.ttf | | Iosevka Term Extrabold Oblique | | Iosevka Term Extrabold Oblique | | Regular | | Iosevka Term | | Extrabold Oblique -+|Iosevka Term Nerd Font ExtraBold Oblique.ttf | | Iosevka Term Nerd Font ExtraBold Oblique |X| IosevkaTerm Nerd Font ExtraBold Oblique |X| Italic |X| IosevkaTerm Nerd Font | | ExtraBold Oblique --|Iosevka Term Extrabold Oblique Nerd Font.ttf | | Iosevka Term Extrabold Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extrabold Oblique -#### Add weight/style to family [1] ->|iosevka-extralight.ttf | | Iosevka Extralight | | Iosevka Extralight | | Regular | | Iosevka | | Extralight -+|Iosevka Nerd Font ExtraLight.ttf | | Iosevka Nerd Font ExtraLight |X| Iosevka Nerd Font ExtraLight | | Regular | | Iosevka Nerd Font | | ExtraLight --|Iosevka Extralight Nerd Font.ttf | | Iosevka Extralight Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extralight -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-extralight.ttf | | Iosevka Term Extralight | | Iosevka Term Extralight | | Regular | | Iosevka Term | | Extralight -+|Iosevka Term Nerd Font ExtraLight.ttf | | Iosevka Term Nerd Font ExtraLight |X| IosevkaTerm Nerd Font ExtraLight | | Regular |X| IosevkaTerm Nerd Font | | ExtraLight --|Iosevka Term Extralight Nerd Font.ttf | | Iosevka Term Extralight Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extralight -#### Add weight/style to family [1] ->|iosevka-extralightitalic.ttf | | Iosevka Extralight Italic | | Iosevka Extralight | | Italic | | Iosevka | | Extralight Italic -+|Iosevka Nerd Font ExtraLight Italic.ttf | | Iosevka Nerd Font ExtraLight Italic |X| Iosevka Nerd Font ExtraLight | | Italic | | Iosevka Nerd Font | | ExtraLight Italic --|Iosevka Extralight Italic Nerd Font.ttf | | Iosevka Extralight Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Extralight Italic -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-extralightitalic.ttf | | Iosevka Term Extralight Italic | | Iosevka Term Extralight | | Italic | | Iosevka Term | | Extralight Italic -+|Iosevka Term Nerd Font ExtraLight Italic.ttf | | Iosevka Term Nerd Font ExtraLight Italic |X| IosevkaTerm Nerd Font ExtraLight | | Italic |X| IosevkaTerm Nerd Font | | ExtraLight Italic --|Iosevka Term Extralight Italic Nerd Font.ttf | | Iosevka Term Extralight Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Extralight Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-extralightoblique.ttf | | Iosevka Extralight Oblique | | Iosevka Extralight Oblique | | Regular | | Iosevka | | Extralight Oblique -+|Iosevka Nerd Font ExtraLight Oblique.ttf | | Iosevka Nerd Font ExtraLight Oblique |X| Iosevka Nerd Font ExtraLight Oblique |X| Italic | | Iosevka Nerd Font | | ExtraLight Oblique --|Iosevka Extralight Oblique Nerd Font.ttf | | Iosevka Extralight Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extralight Oblique -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-extralightoblique.ttf | | Iosevka Term Extralight Oblique | | Iosevka Term XLtObl | | Regular | | Iosevka Term | | Extralight Oblique -+|Iosevka Term Nerd Font ExtraLight Oblique.ttf | | Iosevka Term Nerd Font ExtraLight Oblique |X| IosevkaTerm Nerd Font ExtraLight Oblique |X| Italic |X| IosevkaTerm Nerd Font | | ExtraLight Oblique --|Iosevka Term Extralight Oblique Nerd Font.ttf | | Iosevka Term Extralight Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Extralight Oblique -#### Add weight/style to family [1] ->|iosevka-heavy.ttf | | Iosevka Heavy | | Iosevka Heavy | | Regular | | Iosevka | | Heavy -+|Iosevka Nerd Font Heavy.ttf | | Iosevka Nerd Font Heavy |X| Iosevka Nerd Font Heavy | | Regular | | Iosevka Nerd Font | | Heavy --|Iosevka Heavy Nerd Font.ttf | | Iosevka Heavy Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Heavy -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-heavy.ttf | | Iosevka Term Heavy | | Iosevka Term Heavy | | Regular | | Iosevka Term | | Heavy -+|Iosevka Term Nerd Font Heavy.ttf | | Iosevka Term Nerd Font Heavy |X| IosevkaTerm Nerd Font Heavy | | Regular |X| IosevkaTerm Nerd Font | | Heavy --|Iosevka Term Heavy Nerd Font.ttf | | Iosevka Term Heavy Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Heavy -#### Add weight/style to family [1] ->|iosevka-heavyitalic.ttf | | Iosevka Heavy Italic | | Iosevka Heavy | | Italic | | Iosevka | | Heavy Italic -+|Iosevka Nerd Font Heavy Italic.ttf | | Iosevka Nerd Font Heavy Italic |X| Iosevka Nerd Font Heavy | | Italic | | Iosevka Nerd Font | | Heavy Italic --|Iosevka Heavy Italic Nerd Font.ttf | | Iosevka Heavy Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Heavy Italic -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-heavyitalic.ttf | | Iosevka Term Heavy Italic | | Iosevka Term Heavy | | Italic | | Iosevka Term | | Heavy Italic -+|Iosevka Term Nerd Font Heavy Italic.ttf | | Iosevka Term Nerd Font Heavy Italic |X| IosevkaTerm Nerd Font Heavy | | Italic |X| IosevkaTerm Nerd Font | | Heavy Italic --|Iosevka Term Heavy Italic Nerd Font.ttf | | Iosevka Term Heavy Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Heavy Italic -#### 'Term' is missing from Family [12] Drop unneeded Typogr.Family/Typogr.Style [5] ->|iosevka-term-italic.ttf | | Iosevka Term Italic | | Iosevka Term | | Italic | | Iosevka Term | | Italic -+|Iosevka Term Nerd Font Italic.ttf | | Iosevka Term Nerd Font Italic |X| IosevkaTerm Nerd Font | | Italic |X| | | --|Iosevka Term Italic Nerd Font.ttf | | Iosevka Term Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Italic -#### Add weight/style to family [1] ->|iosevka-light.ttf | | Iosevka Light | | Iosevka Light | | Regular | | Iosevka | | Light -+|Iosevka Nerd Font Light.ttf | | Iosevka Nerd Font Light |X| Iosevka Nerd Font Light | | Regular | | Iosevka Nerd Font | | Light --|Iosevka Light Nerd Font.ttf | | Iosevka Light Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Light -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-light.ttf | | Iosevka Term Light | | Iosevka Term Light | | Regular | | Iosevka Term | | Light -+|Iosevka Term Nerd Font Light.ttf | | Iosevka Term Nerd Font Light |X| IosevkaTerm Nerd Font Light | | Regular |X| IosevkaTerm Nerd Font | | Light --|Iosevka Term Light Nerd Font.ttf | | Iosevka Term Light Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Light -#### Add weight/style to family [1] ->|iosevka-lightitalic.ttf | | Iosevka Light Italic | | Iosevka Light | | Italic | | Iosevka | | Light Italic -+|Iosevka Nerd Font Light Italic.ttf | | Iosevka Nerd Font Light Italic |X| Iosevka Nerd Font Light | | Italic | | Iosevka Nerd Font | | Light Italic --|Iosevka Light Italic Nerd Font.ttf | | Iosevka Light Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Light Italic -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-lightitalic.ttf | | Iosevka Term Light Italic | | Iosevka Term Light | | Italic | | Iosevka Term | | Light Italic -+|Iosevka Term Nerd Font Light Italic.ttf | | Iosevka Term Nerd Font Light Italic |X| IosevkaTerm Nerd Font Light | | Italic |X| IosevkaTerm Nerd Font | | Light Italic --|Iosevka Term Light Italic Nerd Font.ttf | | Iosevka Term Light Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Light Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-lightoblique.ttf | | Iosevka Light Oblique | | Iosevka Light Oblique | | Regular | | Iosevka | | Light Oblique -+|Iosevka Nerd Font Light Oblique.ttf | | Iosevka Nerd Font Light Oblique |X| Iosevka Nerd Font Light Oblique |X| Italic | | Iosevka Nerd Font | | Light Oblique --|Iosevka Light Oblique Nerd Font.ttf | | Iosevka Light Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Light Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-lightoblique.ttf | | Iosevka Term Light Oblique | | Iosevka Term Light Oblique | | Regular | | Iosevka Term | | Light Oblique -+|Iosevka Term Nerd Font Light Oblique.ttf | | Iosevka Term Nerd Font Light Oblique |X| IosevkaTerm Nerd Font Light Oblique |X| Italic |X| IosevkaTerm Nerd Font | | Light Oblique --|Iosevka Term Light Oblique Nerd Font.ttf | | Iosevka Term Light Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Light Oblique -#### Add weight/style to family [1] ->|iosevka-medium.ttf | | Iosevka Medium | | Iosevka Medium | | Regular | | Iosevka | | Medium -+|Iosevka Nerd Font Medium.ttf | | Iosevka Nerd Font Medium |X| Iosevka Nerd Font Medium | | Regular | | Iosevka Nerd Font | | Medium --|Iosevka Medium Nerd Font.ttf | | Iosevka Medium Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Medium -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-medium.ttf | | Iosevka Term Medium | | Iosevka Term Medium | | Regular | | Iosevka Term | | Medium -+|Iosevka Term Nerd Font Medium.ttf | | Iosevka Term Nerd Font Medium |X| IosevkaTerm Nerd Font Medium | | Regular |X| IosevkaTerm Nerd Font | | Medium --|Iosevka Term Medium Nerd Font.ttf | | Iosevka Term Medium Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Medium -#### Add weight/style to family [1] ->|iosevka-mediumitalic.ttf | | Iosevka Medium Italic | | Iosevka Medium | | Italic | | Iosevka | | Medium Italic -+|Iosevka Nerd Font Medium Italic.ttf | | Iosevka Nerd Font Medium Italic |X| Iosevka Nerd Font Medium | | Italic | | Iosevka Nerd Font | | Medium Italic --|Iosevka Medium Italic Nerd Font.ttf | | Iosevka Medium Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Medium Italic -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-mediumitalic.ttf | | Iosevka Term Medium Italic | | Iosevka Term Medium | | Italic | | Iosevka Term | | Medium Italic -+|Iosevka Term Nerd Font Medium Italic.ttf | | Iosevka Term Nerd Font Medium Italic |X| IosevkaTerm Nerd Font Medium | | Italic |X| IosevkaTerm Nerd Font | | Medium Italic --|Iosevka Term Medium Italic Nerd Font.ttf | | Iosevka Term Medium Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Medium Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-mediumoblique.ttf | | Iosevka Term Medium Oblique | | Iosevka Term Medium Oblique | | Regular | | Iosevka Term | | Medium Oblique -+|Iosevka Term Nerd Font Medium Oblique.ttf | | Iosevka Term Nerd Font Medium Oblique |X| IosevkaTerm Nerd Font Medium Oblique |X| Italic |X| IosevkaTerm Nerd Font | | Medium Oblique --|Iosevka Term Medium Oblique Nerd Font.ttf | | Iosevka Term Medium Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Medium Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-oblique.ttf | | Iosevka Oblique | | Iosevka Oblique | | Regular | | Iosevka | | Oblique -+|Iosevka Nerd Font Oblique.ttf | | Iosevka Nerd Font Oblique |X| Iosevka Nerd Font Oblique |X| Italic | | Iosevka Nerd Font | | Oblique --|Iosevka Oblique Nerd Font.ttf | | Iosevka Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-oblique.ttf | | Iosevka Term Oblique | | Iosevka Term Oblique | | Regular | | Iosevka Term | | Oblique -+|Iosevka Term Nerd Font Oblique.ttf | | Iosevka Term Nerd Font Oblique |X| IosevkaTerm Nerd Font Oblique |X| Italic |X| IosevkaTerm Nerd Font | | Oblique --|Iosevka Term Oblique Nerd Font.ttf | | Iosevka Term Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Oblique -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|iosevka-regular.ttf | | Iosevka | | Iosevka | | Regular | | Iosevka | | Regular -+|Iosevka Nerd Font.ttf | | Iosevka Nerd Font | | Iosevka Nerd Font |X| Regular | | | | --|Iosevka Nerd Font.ttf | | Iosevka Nerd Font | | Iosevka Nerd Font | | Book | | Iosevka Nerd Font | | Regular -#### Add weight/style to family [1] 'Term' is missing from Family [12] Drop unneeded Typogr.Family/Typogr.Style [5] ->|iosevka-term-regular.ttf | | Iosevka Term | | Iosevka Term | | Regular | | Iosevka Term | | Regular -+|Iosevka Term Nerd Font.ttf | | Iosevka Term Nerd Font |X| IosevkaTerm Nerd Font | | Regular |X| | | --|Iosevka Term Nerd Font.ttf | | Iosevka Term Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Regular -#### Add weight/style to family [1] ->|iosevka-semibold.ttf | | Iosevka Semibold | | Iosevka Semibold | | Regular | | Iosevka | | Semibold -+|Iosevka Nerd Font SemiBold.ttf | | Iosevka Nerd Font SemiBold |X| Iosevka Nerd Font SemiBold | | Regular | | Iosevka Nerd Font | | SemiBold --|Iosevka Semibold Nerd Font.ttf | | Iosevka Semibold Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Semibold -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-semibold.ttf | | Iosevka Term Semibold | | Iosevka Term Semibold | | Regular | | Iosevka Term | | Semibold -+|Iosevka Term Nerd Font SemiBold.ttf | | Iosevka Term Nerd Font SemiBold |X| IosevkaTerm Nerd Font SemiBold | | Regular |X| IosevkaTerm Nerd Font | | SemiBold --|Iosevka Term Semibold Nerd Font.ttf | | Iosevka Term Semibold Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Semibold -#### Add weight/style to family [1] ->|iosevka-semibolditalic.ttf | | Iosevka Semibold Italic | | Iosevka Semibold | | Italic | | Iosevka | | Semibold Italic -+|Iosevka Nerd Font SemiBold Italic.ttf | | Iosevka Nerd Font SemiBold Italic |X| Iosevka Nerd Font SemiBold | | Italic | | Iosevka Nerd Font | | SemiBold Italic --|Iosevka Semibold Italic Nerd Font.ttf | | Iosevka Semibold Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Semibold Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-semibolditalic.ttf | | Iosevka Term Semibold Italic | | Iosevka Term Semibold | | Italic | | Iosevka Term | | Semibold Italic -+|Iosevka Term Nerd Font SemiBold Italic.ttf | | Iosevka Term Nerd Font SemiBold Italic |X| IosevkaTerm Nerd Font SemiBold | | Italic |X| IosevkaTerm Nerd Font | | SemiBold Italic --|Iosevka Term Semibold Italic Nerd Font.ttf | | Iosevka Term Semibold Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Semibold Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-semiboldoblique.ttf | | Iosevka Semibold Oblique | | Iosevka Semibold Oblique | | Regular | | Iosevka | | Semibold Oblique -+|Iosevka Nerd Font SemiBold Oblique.ttf | | Iosevka Nerd Font SemiBold Oblique |X| Iosevka Nerd Font SemiBold Oblique |X| Italic | | Iosevka Nerd Font | | SemiBold Oblique --|Iosevka Semibold Oblique Nerd Font.ttf | | Iosevka Semibold Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Semibold Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-semiboldoblique.ttf | | Iosevka Term Semibold Oblique | | Iosevka Term Semibold Oblique | | Regular | | Iosevka Term | | Semibold Oblique -+|Iosevka Term Nerd Font SemiBold Oblique.ttf | | Iosevka Term Nerd Font SemiBold Oblique |X| IosevkaTerm Nerd Font SemiBold Oblique |X| Italic |X| IosevkaTerm Nerd Font | | SemiBold Oblique --|Iosevka Term Semibold Oblique Nerd Font.ttf | | Iosevka Term Semibold Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Semibold Oblique -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-thin.ttf | | Iosevka Term Thin | | Iosevka Term Thin | | Regular | | Iosevka Term | | Thin -+|Iosevka Term Nerd Font Thin.ttf | | Iosevka Term Nerd Font Thin |X| IosevkaTerm Nerd Font Thin | | Regular |X| IosevkaTerm Nerd Font | | Thin --|Iosevka Term Thin Nerd Font.ttf | | Iosevka Term Thin Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Thin -#### Add weight/style to family [1] ->|iosevka-thin.ttf | | Iosevka Thin | | Iosevka Thin | | Regular | | Iosevka | | Thin -+|Iosevka Nerd Font Thin.ttf | | Iosevka Nerd Font Thin |X| Iosevka Nerd Font Thin | | Regular | | Iosevka Nerd Font | | Thin --|Iosevka Thin Nerd Font.ttf | | Iosevka Thin Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Thin -#### Add weight/style to family [1] 'Term' is missing from Family [12] ->|iosevka-term-thinitalic.ttf | | Iosevka Term Thin Italic | | Iosevka Term Thin | | Italic | | Iosevka Term | | Thin Italic -+|Iosevka Term Nerd Font Thin Italic.ttf | | Iosevka Term Nerd Font Thin Italic |X| IosevkaTerm Nerd Font Thin | | Italic |X| IosevkaTerm Nerd Font | | Thin Italic --|Iosevka Term Thin Italic Nerd Font.ttf | | Iosevka Term Thin Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|iosevka-thinitalic.ttf | | Iosevka Thin Italic | | Iosevka Thin | | Italic | | Iosevka | | Thin Italic -+|Iosevka Nerd Font Thin Italic.ttf | | Iosevka Nerd Font Thin Italic |X| Iosevka Nerd Font Thin | | Italic | | Iosevka Nerd Font | | Thin Italic --|Iosevka Thin Italic Nerd Font.ttf | | Iosevka Thin Italic Nerd Font | | Iosevka Nerd Font | | Italic | | Iosevka Nerd Font | | Thin Italic -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] 'Term' is missing from Family [12] ->|iosevka-term-thinoblique.ttf | | Iosevka Term Thin Oblique | | Iosevka Term Thin Oblique | | Regular | | Iosevka Term | | Thin Oblique -+|Iosevka Term Nerd Font Thin Oblique.ttf | | Iosevka Term Nerd Font Thin Oblique |X| IosevkaTerm Nerd Font Thin Oblique |X| Italic |X| IosevkaTerm Nerd Font | | Thin Oblique --|Iosevka Term Thin Oblique Nerd Font.ttf | | Iosevka Term Thin Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Thin Oblique -#### Add weight/style to family [1] Put Oblique into own SubFamily (and mark it as italic) [11] ->|iosevka-thinoblique.ttf | | Iosevka Thin Oblique | | Iosevka Thin Oblique | | Regular | | Iosevka | | Thin Oblique -+|Iosevka Nerd Font Thin Oblique.ttf | | Iosevka Nerd Font Thin Oblique |X| Iosevka Nerd Font Thin Oblique |X| Italic | | Iosevka Nerd Font | | Thin Oblique --|Iosevka Thin Oblique Nerd Font.ttf | | Iosevka Thin Oblique Nerd Font | | Iosevka Nerd Font | | Regular | | Iosevka Nerd Font | | Thin Oblique -#### Add weight/style to family [1] ->|JetBrainsMono-ExtraBoldItalic.ttf | | JetBrains Mono ExtraBold Italic | | JetBrains Mono ExtraBold | | Italic | | JetBrains Mono | | ExtraBold Italic -+|JetBrains Mono Nerd Font ExtraBold Italic.ttf | | JetBrains Mono Nerd Font ExtraBold Italic |X| JetBrainsMono Nerd Font ExtraBold | | Italic | | JetBrainsMono Nerd Font | | ExtraBold Italic --|JetBrains Mono ExtraBold Italic Nerd Font.ttf | | JetBrains Mono ExtraBold Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | ExtraBold Italic -#### Add weight/style to family [1] ->|JetBrainsMono-ExtraBold.ttf | | JetBrains Mono ExtraBold | | JetBrains Mono ExtraBold | | Regular | | JetBrains Mono | | ExtraBold -+|JetBrains Mono Nerd Font ExtraBold.ttf | | JetBrains Mono Nerd Font ExtraBold |X| JetBrainsMono Nerd Font ExtraBold | | Regular | | JetBrainsMono Nerd Font | | ExtraBold --|JetBrains Mono ExtraBold Nerd Font.ttf | | JetBrains Mono ExtraBold Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|JetBrainsMono-ExtraLightItalic.ttf | | JetBrains Mono ExtraLight Italic | | JetBrains Mono ExtraLight | | Italic | | JetBrains Mono | | ExtraLight Italic -+|JetBrains Mono Nerd Font ExtraLight Italic.ttf | | JetBrains Mono Nerd Font ExtraLight Italic |X| JetBrainsMono Nerd Font ExtraLight | | Italic | | JetBrainsMono Nerd Font | | ExtraLight Italic --|JetBrains Mono ExtraLight Italic Nerd Font.ttf | | JetBrains Mono ExtraLight Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|JetBrainsMono-ExtraLight.ttf | | JetBrains Mono ExtraLight | | JetBrains Mono ExtraLight | | Regular | | JetBrains Mono | | ExtraLight -+|JetBrains Mono Nerd Font ExtraLight.ttf | | JetBrains Mono Nerd Font ExtraLight |X| JetBrainsMono Nerd Font ExtraLight | | Regular | | JetBrainsMono Nerd Font | | ExtraLight --|JetBrains Mono ExtraLight Nerd Font.ttf | | JetBrains Mono ExtraLight Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|JetBrainsMono-LightItalic.ttf | | JetBrains Mono Light Italic | | JetBrains Mono Light | | Italic | | JetBrains Mono | | Light Italic -+|JetBrains Mono Nerd Font Light Italic.ttf | | JetBrains Mono Nerd Font Light Italic |X| JetBrainsMono Nerd Font Light | | Italic | | JetBrainsMono Nerd Font | | Light Italic --|JetBrains Mono Light Italic Nerd Font.ttf | | JetBrains Mono Light Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|JetBrainsMono-Light.ttf | | JetBrains Mono Light | | JetBrains Mono Light | | Regular | | JetBrains Mono | | Light -+|JetBrains Mono Nerd Font Light.ttf | | JetBrains Mono Nerd Font Light |X| JetBrainsMono Nerd Font Light | | Regular | | JetBrainsMono Nerd Font | | Light --|JetBrains Mono Light Nerd Font.ttf | | JetBrains Mono Light Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | Light -#### Add weight/style to family [1] ->|JetBrainsMono-MediumItalic.ttf | | JetBrains Mono Medium Italic | | JetBrains Mono Medium | | Italic | | JetBrains Mono | | Medium Italic -+|JetBrains Mono Nerd Font Medium Italic.ttf | | JetBrains Mono Nerd Font Medium Italic |X| JetBrainsMono Nerd Font Medium | | Italic | | JetBrainsMono Nerd Font | | Medium Italic --|JetBrains Mono Medium Italic Nerd Font.ttf | | JetBrains Mono Medium Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|JetBrainsMono-Medium.ttf | | JetBrains Mono Medium | | JetBrains Mono Medium | | Regular | | JetBrains Mono | | Medium -+|JetBrains Mono Nerd Font Medium.ttf | | JetBrains Mono Nerd Font Medium |X| JetBrainsMono Nerd Font Medium | | Regular | | JetBrainsMono Nerd Font | | Medium --|JetBrains Mono Medium Nerd Font.ttf | | JetBrains Mono Medium Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | Medium -#### Add weight/style to family [1] ->|JetBrainsMono-SemiBoldItalic.ttf | | JetBrains Mono SemiBold Italic | | JetBrains Mono SemiBold | | Italic | | JetBrains Mono | | SemiBold Italic -+|JetBrains Mono Nerd Font SemiBold Italic.ttf | | JetBrains Mono Nerd Font SemiBold Italic |X| JetBrainsMono Nerd Font SemiBold | | Italic | | JetBrainsMono Nerd Font | | SemiBold Italic --|JetBrains Mono SemiBold Italic Nerd Font.ttf | | JetBrains Mono SemiBold Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|JetBrainsMono-SemiBold.ttf | | JetBrains Mono SemiBold | | JetBrains Mono SemiBold | | Regular | | JetBrains Mono | | SemiBold -+|JetBrains Mono Nerd Font SemiBold.ttf | | JetBrains Mono Nerd Font SemiBold |X| JetBrainsMono Nerd Font SemiBold | | Regular | | JetBrainsMono Nerd Font | | SemiBold --|JetBrains Mono SemiBold Nerd Font.ttf | | JetBrains Mono SemiBold Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|JetBrainsMono-ThinItalic.ttf | | JetBrains Mono Thin Italic | | JetBrains Mono Thin | | Italic | | JetBrains Mono | | Thin Italic -+|JetBrains Mono Nerd Font Thin Italic.ttf | | JetBrains Mono Nerd Font Thin Italic |X| JetBrainsMono Nerd Font Thin | | Italic | | JetBrainsMono Nerd Font | | Thin Italic --|JetBrains Mono Thin Italic Nerd Font.ttf | | JetBrains Mono Thin Italic Nerd Font | | JetBrainsMono Nerd Font | | Italic | | JetBrainsMono Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|JetBrainsMono-Thin.ttf | | JetBrains Mono Thin | | JetBrains Mono Thin | | Regular | | JetBrains Mono | | Thin -+|JetBrains Mono Nerd Font Thin.ttf | | JetBrains Mono Nerd Font Thin |X| JetBrainsMono Nerd Font Thin | | Regular | | JetBrainsMono Nerd Font | | Thin --|JetBrains Mono Thin Nerd Font.ttf | | JetBrains Mono Thin Nerd Font | | JetBrainsMono Nerd Font | | Regular | | JetBrainsMono Nerd Font | | Thin -#### Add weight/style to family [1] ->|JetBrainsMonoNL-ExtraBoldItalic.ttf | | JetBrains Mono NL ExtraBold Italic | | JetBrains Mono NL ExtraBold | | Italic | | JetBrains Mono NL | | ExtraBold Italic -+|JetBrains Mono NL Nerd Font ExtraBold Italic.ttf | | JetBrains Mono NL Nerd Font ExtraBold Italic |X| JetBrainsMonoNL Nerd Font ExtraBold | | Italic | | JetBrainsMonoNL Nerd Font | | ExtraBold Italic --|JetBrains Mono NL ExtraBold Italic Nerd Font.ttf | | JetBrains Mono NL ExtraBold Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | ExtraBold Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-ExtraBold.ttf | | JetBrains Mono NL ExtraBold | | JetBrains Mono NL ExtraBold | | Regular | | JetBrains Mono NL | | ExtraBold -+|JetBrains Mono NL Nerd Font ExtraBold.ttf | | JetBrains Mono NL Nerd Font ExtraBold |X| JetBrainsMonoNL Nerd Font ExtraBold | | Regular | | JetBrainsMonoNL Nerd Font | | ExtraBold --|JetBrains Mono NL ExtraBold Nerd Font.ttf | | JetBrains Mono NL ExtraBold Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|JetBrainsMonoNL-ExtraLightItalic.ttf | | JetBrains Mono NL ExtraLight Italic | | JetBrains Mono NL ExtraLight | | Italic | | JetBrains Mono NL | | ExtraLight Italic -+|JetBrains Mono NL Nerd Font ExtraLight Italic.ttf | | JetBrains Mono NL Nerd Font ExtraLight Italic |X| JetBrainsMonoNL Nerd Font ExtraLight | | Italic | | JetBrainsMonoNL Nerd Font | | ExtraLight Italic --|JetBrains Mono NL ExtraLight Italic Nerd Font.ttf | | JetBrains Mono NL ExtraLight Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-ExtraLight.ttf | | JetBrains Mono NL ExtraLight | | JetBrains Mono NL ExtraLight | | Regular | | JetBrains Mono NL | | ExtraLight -+|JetBrains Mono NL Nerd Font ExtraLight.ttf | | JetBrains Mono NL Nerd Font ExtraLight |X| JetBrainsMonoNL Nerd Font ExtraLight | | Regular | | JetBrainsMonoNL Nerd Font | | ExtraLight --|JetBrains Mono NL ExtraLight Nerd Font.ttf | | JetBrains Mono NL ExtraLight Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|JetBrainsMonoNL-LightItalic.ttf | | JetBrains Mono NL Light Italic | | JetBrains Mono NL Light | | Italic | | JetBrains Mono NL | | Light Italic -+|JetBrains Mono NL Nerd Font Light Italic.ttf | | JetBrains Mono NL Nerd Font Light Italic |X| JetBrainsMonoNL Nerd Font Light | | Italic | | JetBrainsMonoNL Nerd Font | | Light Italic --|JetBrains Mono NL Light Italic Nerd Font.ttf | | JetBrains Mono NL Light Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-Light.ttf | | JetBrains Mono NL Light | | JetBrains Mono NL Light | | Regular | | JetBrains Mono NL | | Light -+|JetBrains Mono NL Nerd Font Light.ttf | | JetBrains Mono NL Nerd Font Light |X| JetBrainsMonoNL Nerd Font Light | | Regular | | JetBrainsMonoNL Nerd Font | | Light --|JetBrains Mono NL Light Nerd Font.ttf | | JetBrains Mono NL Light Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | Light -#### Add weight/style to family [1] ->|JetBrainsMonoNL-MediumItalic.ttf | | JetBrains Mono NL Medium Italic | | JetBrains Mono NL Medium | | Italic | | JetBrains Mono NL | | Medium Italic -+|JetBrains Mono NL Nerd Font Medium Italic.ttf | | JetBrains Mono NL Nerd Font Medium Italic |X| JetBrainsMonoNL Nerd Font Medium | | Italic | | JetBrainsMonoNL Nerd Font | | Medium Italic --|JetBrains Mono NL Medium Italic Nerd Font.ttf | | JetBrains Mono NL Medium Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-Medium.ttf | | JetBrains Mono NL Medium | | JetBrains Mono NL Medium | | Regular | | JetBrains Mono NL | | Medium -+|JetBrains Mono NL Nerd Font Medium.ttf | | JetBrains Mono NL Nerd Font Medium |X| JetBrainsMonoNL Nerd Font Medium | | Regular | | JetBrainsMonoNL Nerd Font | | Medium --|JetBrains Mono NL Medium Nerd Font.ttf | | JetBrains Mono NL Medium Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | Medium -#### Add weight/style to family [1] ->|JetBrainsMonoNL-SemiBoldItalic.ttf | | JetBrains Mono NL SemiBold Italic | | JetBrains Mono NL SemiBold | | Italic | | JetBrains Mono NL | | SemiBold Italic -+|JetBrains Mono NL Nerd Font SemiBold Italic.ttf | | JetBrains Mono NL Nerd Font SemiBold Italic |X| JetBrainsMonoNL Nerd Font SemiBold | | Italic | | JetBrainsMonoNL Nerd Font | | SemiBold Italic --|JetBrains Mono NL SemiBold Italic Nerd Font.ttf | | JetBrains Mono NL SemiBold Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-SemiBold.ttf | | JetBrains Mono NL SemiBold | | JetBrains Mono NL SemiBold | | Regular | | JetBrains Mono NL | | SemiBold -+|JetBrains Mono NL Nerd Font SemiBold.ttf | | JetBrains Mono NL Nerd Font SemiBold |X| JetBrainsMonoNL Nerd Font SemiBold | | Regular | | JetBrainsMonoNL Nerd Font | | SemiBold --|JetBrains Mono NL SemiBold Nerd Font.ttf | | JetBrains Mono NL SemiBold Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|JetBrainsMonoNL-ThinItalic.ttf | | JetBrains Mono NL Thin Italic | | JetBrains Mono NL Thin | | Italic | | JetBrains Mono NL | | Thin Italic -+|JetBrains Mono NL Nerd Font Thin Italic.ttf | | JetBrains Mono NL Nerd Font Thin Italic |X| JetBrainsMonoNL Nerd Font Thin | | Italic | | JetBrainsMonoNL Nerd Font | | Thin Italic --|JetBrains Mono NL Thin Italic Nerd Font.ttf | | JetBrains Mono NL Thin Italic Nerd Font | | JetBrainsMonoNL Nerd Font | | Italic | | JetBrainsMonoNL Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|JetBrainsMonoNL-Thin.ttf | | JetBrains Mono NL Thin | | JetBrains Mono NL Thin | | Regular | | JetBrains Mono NL | | Thin -+|JetBrains Mono NL Nerd Font Thin.ttf | | JetBrains Mono NL Nerd Font Thin |X| JetBrainsMonoNL Nerd Font Thin | | Regular | | JetBrainsMonoNL Nerd Font | | Thin --|JetBrains Mono NL Thin Nerd Font.ttf | | JetBrains Mono NL Thin Nerd Font | | JetBrainsMonoNL Nerd Font | | Regular | | JetBrainsMonoNL Nerd Font | | Thin -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|LiberationMono-Regular.ttf | | Liberation Mono | | Liberation Mono | | Regular | | | | -+|Literation Mono Nerd Font.ttf | | Literation Mono Nerd Font | | LiterationMono Nerd Font |X| Regular | | | | --|Literation Mono Nerd Font.ttf | | Literation Mono Nerd Font | | LiterationMono Nerd Font | | Book | | LiterationMono Nerd Font | | -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|LiberationSans-Regular.ttf | | Liberation Sans | | Liberation Sans | | Regular | | | | -+|Literation Sans Nerd Font.ttf | | Literation Sans Nerd Font | | LiterationSans Nerd Font |X| Regular | | | | --|Literation Sans Nerd Font.ttf | | Literation Sans Nerd Font | | LiterationSans Nerd Font | | Book | | LiterationSans Nerd Font | | -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|LiberationSerif-Regular.ttf | | Liberation Serif | | Liberation Serif | | Regular | | | | -+|Literation Serif Nerd Font.ttf | | Literation Serif Nerd Font | | LiterationSerif Nerd Font |X| Regular | | | | --|Literation Serif Nerd Font.ttf | | Literation Serif Nerd Font | | LiterationSerif Nerd Font | | Book | | LiterationSerif Nerd Font | | -#### Add weight/style to family [1] ->|Lilex-Light.otf | | Lilex Light | | Lilex Light | | Regular | | Lilex | | Light -+|Lilex Nerd Font Light.otf | | Lilex Nerd Font Light |X| Lilex Nerd Font Light | | Regular | | Lilex Nerd Font | | Light --|Lilex Light Nerd Font.otf | | Lilex Light Nerd Font | | Lilex Light | | Regular | | Lilex Nerd Font | | Light -#### Add weight/style to family [1] ->|Lilex-Light.ttf | | Lilex Light | | Lilex Light | | Regular | | Lilex | | Light -+|Lilex Nerd Font Light.ttf | | Lilex Nerd Font Light |X| Lilex Nerd Font Light | | Regular | | Lilex Nerd Font | | Light --|Lilex Light Nerd Font.ttf | | Lilex Light Nerd Font | | Lilex Nerd Font | | Regular | | Lilex Nerd Font | | Light -#### Add weight/style to family [1] ->|Lilex-Medium.otf | | Lilex Medium | | Lilex Medium | | Regular | | Lilex | | Medium -+|Lilex Nerd Font Medium.otf | | Lilex Nerd Font Medium |X| Lilex Nerd Font Medium | | Regular | | Lilex Nerd Font | | Medium --|Lilex Medium Nerd Font.otf | | Lilex Medium Nerd Font | | Lilex Medium | | Regular | | Lilex Nerd Font | | Medium -#### Add weight/style to family [1] ->|Lilex-Medium.ttf | | Lilex Medium | | Lilex Medium | | Regular | | Lilex | | Medium -+|Lilex Nerd Font Medium.ttf | | Lilex Nerd Font Medium |X| Lilex Nerd Font Medium | | Regular | | Lilex Nerd Font | | Medium --|Lilex Medium Nerd Font.ttf | | Lilex Medium Nerd Font | | Lilex Nerd Font | | Regular | | Lilex Nerd Font | | Medium -#### Bold and Italic are styles of a basefont [10] Drop unneeded Typogr.Family/Typogr.Style [5] ->|Monofur Bold for Powerline.ttf | | monofur bold for Powerline | | monofur for Powerline | | bold | | monofur for Powerline | | -+|Monofur Nerd Font Bold.ttf | | Monofur Nerd Font Bold |X| Monofur Nerd Font | | Bold |X| | | --|monofur bold Nerd Font.ttf | | monofur bold Nerd Font | | Monofurbold Nerd Font | | bold | | Monofurbold Nerd Font | | -#### Bold and Italic are styles of a basefont [10] Drop unneeded Typogr.Family/Typogr.Style [5] ->|Monofur Italic for Powerline.ttf | | monofur italic for Powerline | | monofur for Powerline | | italic | | monofur for Powerline | | -+|Monofur Nerd Font Italic.ttf | | Monofur Nerd Font Italic |X| Monofur Nerd Font | | Italic |X| | | --|monofur italic Nerd Font.ttf | | monofur italic Nerd Font | | Monofuritalic Nerd Font | | italic | | Monofuritalic Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|Monofur for Powerline.ttf | | monofur for Powerline | | monofur for Powerline | | Regular | | monofur for Powerline | | -+|Monofur Nerd Font.ttf | | Monofur Nerd Font | | Monofur Nerd Font |X| Regular | | | | --|monofur Nerd Font.ttf | | monofur Nerd Font | | Monofur Nerd Font | | Book | | Monofur Nerd Font | | -#### Handle Retina as Weight and not Style [9] ->|Monoid-Retina.ttf | | Monoid Retina | | Monoid | | Retina | | | | -+|Monoid Nerd Font Retina.ttf | | Monoid Nerd Font Retina |X| Monoid Nerd Font Retina |X| Regular | | Monoid Nerd Font |X| Retina --|Monoid Retina Nerd Font.ttf | | Monoid Retina Nerd Font | | Monoid Nerd Font | | Retina | | Monoid Nerd Font | | -#### Drop unneeded Typogr.Family/Typogr.Style [5] ->|mononoki-BoldItalic.ttf | | mononoki Bold Italic | | mononoki | | Bold Italic | | | | BoldItalic -+|Mononoki Nerd Font Bold Italic.ttf | | Mononoki Nerd Font Bold Italic | | Mononoki Nerd Font | | Bold Italic | | |X| --|mononoki Bold Italic Nerd Font.ttf | | mononoki Bold Italic Nerd Font | | mononoki Nerd Font | | Bold Italic | | mononoki Nerd Font | | BoldItalic -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1c-black.ttf | | M+ 1c black | | M+ 1c black | | Regular | | M+ 1c | | black -+|M+ 1c Nerd Font Black.ttf | | M+ 1c Nerd Font Black |X| M+ 1c Nerd Font Black | | Regular |X| M+ 1c Nerd Font | | Black --|M+ 1c black Nerd Font.ttf | | M+ 1c black Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | black -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1p-black.ttf | | M+ 1p black | | M+ 1p black | | Regular | | M+ 1p | | black -+|M+ 1p Nerd Font Black.ttf | | M+ 1p Nerd Font Black |X| M+ 1p Nerd Font Black | | Regular |X| M+ 1p Nerd Font | | Black --|M+ 1p black Nerd Font.ttf | | M+ 1p black Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | black -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2c-black.ttf | | M+ 2c black | | M+ 2c black | | Regular | | M+ 2c | | black -+|M+ 2c Nerd Font Black.ttf | | M+ 2c Nerd Font Black |X| M+ 2c Nerd Font Black | | Regular |X| M+ 2c Nerd Font | | Black --|M+ 2c black Nerd Font.ttf | | M+ 2c black Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | black -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2p-black.ttf | | M+ 2p black | | M+ 2p black | | Regular | | M+ 2p | | black -+|M+ 2p Nerd Font Black.ttf | | M+ 2p Nerd Font Black |X| M+ 2p Nerd Font Black | | Regular |X| M+ 2p Nerd Font | | Black --|M+ 2p black Nerd Font.ttf | | M+ 2p black Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | black -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1c-bold.ttf | | M+ 1c bold | | M+ 1c | | Bold | | M+ 1c | | bold -+|M+ 1c Nerd Font Bold.ttf | | M+ 1c Nerd Font Bold |X| M+ 1c Nerd Font | | Bold |X| | | --|M+ 1c bold Nerd Font.ttf | | M+ 1c bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 1c | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1m-bold.ttf | | M+ 1m bold | | M+ 1m | | Bold | | M+ 1m | | bold -+|M+ 1m Nerd Font Bold.ttf | | M+ 1m Nerd Font Bold |X| M+ 1m Nerd Font | | Bold |X| | | --|M+ 1m bold Nerd Font.ttf | | M+ 1m bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 1m | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1mn-bold.ttf | | M+ 1mn bold | | M+ 1mn | | Bold | | M+ 1mn | | bold -+|M+ 1mn Nerd Font Bold.ttf | | M+ 1mn Nerd Font Bold |X| M+ 1mn Nerd Font | | Bold |X| | | --|M+ 1mn bold Nerd Font.ttf | | M+ 1mn bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 1mn | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1p-bold.ttf | | M+ 1p bold | | M+ 1p | | Bold | | M+ 1p | | bold -+|M+ 1p Nerd Font Bold.ttf | | M+ 1p Nerd Font Bold |X| M+ 1p Nerd Font | | Bold |X| | | --|M+ 1p bold Nerd Font.ttf | | M+ 1p bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 1p | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2c-bold.ttf | | M+ 2c bold | | M+ 2c | | Bold | | M+ 2c | | bold -+|M+ 2c Nerd Font Bold.ttf | | M+ 2c Nerd Font Bold |X| M+ 2c Nerd Font | | Bold |X| | | --|M+ 2c bold Nerd Font.ttf | | M+ 2c bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 2c | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2m-bold.ttf | | M+ 2m bold | | M+ 2m | | Bold | | M+ 2m | | bold -+|M+ 2m Nerd Font Bold.ttf | | M+ 2m Nerd Font Bold |X| M+ 2m Nerd Font | | Bold |X| | | --|M+ 2m bold Nerd Font.ttf | | M+ 2m bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 2m | | bold -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2p-bold.ttf | | M+ 2p bold | | M+ 2p | | Bold | | M+ 2p | | bold -+|M+ 2p Nerd Font Bold.ttf | | M+ 2p Nerd Font Bold |X| M+ 2p Nerd Font | | Bold |X| | | --|M+ 2p bold Nerd Font.ttf | | M+ 2p bold Nerd Font | | mplus Nerd Font | | Bold | | M+ 2p | | bold -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1c-heavy.ttf | | M+ 1c heavy | | M+ 1c heavy | | Regular | | M+ 1c | | heavy -+|M+ 1c Nerd Font Heavy.ttf | | M+ 1c Nerd Font Heavy |X| M+ 1c Nerd Font Heavy | | Regular |X| M+ 1c Nerd Font | | Heavy --|M+ 1c heavy Nerd Font.ttf | | M+ 1c heavy Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | heavy -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1p-heavy.ttf | | M+ 1p heavy | | M+ 1p heavy | | Regular | | M+ 1p | | heavy -+|M+ 1p Nerd Font Heavy.ttf | | M+ 1p Nerd Font Heavy |X| M+ 1p Nerd Font Heavy | | Regular |X| M+ 1p Nerd Font | | Heavy --|M+ 1p heavy Nerd Font.ttf | | M+ 1p heavy Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | heavy -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2c-heavy.ttf | | M+ 2c heavy | | M+ 2c heavy | | Regular | | M+ 2c | | heavy -+|M+ 2c Nerd Font Heavy.ttf | | M+ 2c Nerd Font Heavy |X| M+ 2c Nerd Font Heavy | | Regular |X| M+ 2c Nerd Font | | Heavy --|M+ 2c heavy Nerd Font.ttf | | M+ 2c heavy Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | heavy -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2p-heavy.ttf | | M+ 2p heavy | | M+ 2p heavy | | Regular | | M+ 2p | | heavy -+|M+ 2p Nerd Font Heavy.ttf | | M+ 2p Nerd Font Heavy |X| M+ 2p Nerd Font Heavy | | Regular |X| M+ 2p Nerd Font | | Heavy --|M+ 2p heavy Nerd Font.ttf | | M+ 2p heavy Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | heavy -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1c-light.ttf | | M+ 1c light | | M+ 1c light | | Regular | | M+ 1c | | light -+|M+ 1c Nerd Font Light.ttf | | M+ 1c Nerd Font Light |X| M+ 1c Nerd Font Light | | Regular |X| M+ 1c Nerd Font | | Light --|M+ 1c light Nerd Font.ttf | | M+ 1c light Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1m-light.ttf | | M+ 1m light | | M+ 1m light | | Regular | | M+ 1m | | light -+|M+ 1m Nerd Font Light.ttf | | M+ 1m Nerd Font Light |X| M+ 1m Nerd Font Light | | Regular |X| M+ 1m Nerd Font | | Light --|M+ 1m light Nerd Font.ttf | | M+ 1m light Nerd Font | | mplus Nerd Font | | Regular | | M+ 1m | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1mn-light.ttf | | M+ 1mn light | | M+ 1mn light | | Regular | | M+ 1mn | | light -+|M+ 1mn Nerd Font Light.ttf | | M+ 1mn Nerd Font Light |X| M+ 1mn Nerd Font Light | | Regular |X| M+ 1mn Nerd Font | | Light --|M+ 1mn light Nerd Font.ttf | | M+ 1mn light Nerd Font | | mplus Nerd Font | | Regular | | M+ 1mn | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1p-light.ttf | | M+ 1p light | | M+ 1p light | | Regular | | M+ 1p | | light -+|M+ 1p Nerd Font Light.ttf | | M+ 1p Nerd Font Light |X| M+ 1p Nerd Font Light | | Regular |X| M+ 1p Nerd Font | | Light --|M+ 1p light Nerd Font.ttf | | M+ 1p light Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2c-light.ttf | | M+ 2c light | | M+ 2c light | | Regular | | M+ 2c | | light -+|M+ 2c Nerd Font Light.ttf | | M+ 2c Nerd Font Light |X| M+ 2c Nerd Font Light | | Regular |X| M+ 2c Nerd Font | | Light --|M+ 2c light Nerd Font.ttf | | M+ 2c light Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2m-light.ttf | | M+ 2m light | | M+ 2m light | | Regular | | M+ 2m | | light -+|M+ 2m Nerd Font Light.ttf | | M+ 2m Nerd Font Light |X| M+ 2m Nerd Font Light | | Regular |X| M+ 2m Nerd Font | | Light --|M+ 2m light Nerd Font.ttf | | M+ 2m light Nerd Font | | mplus Nerd Font | | Regular | | M+ 2m | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2p-light.ttf | | M+ 2p light | | M+ 2p light | | Regular | | M+ 2p | | light -+|M+ 2p Nerd Font Light.ttf | | M+ 2p Nerd Font Light |X| M+ 2p Nerd Font Light | | Regular |X| M+ 2p Nerd Font | | Light --|M+ 2p light Nerd Font.ttf | | M+ 2p light Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | light -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1c-medium.ttf | | M+ 1c medium | | M+ 1c medium | | Regular | | M+ 1c | | medium -+|M+ 1c Nerd Font Medium.ttf | | M+ 1c Nerd Font Medium |X| M+ 1c Nerd Font Medium | | Regular |X| M+ 1c Nerd Font | | Medium --|M+ 1c medium Nerd Font.ttf | | M+ 1c medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1m-medium.ttf | | M+ 1m medium | | M+ 1m medium | | Regular | | M+ 1m | | medium -+|M+ 1m Nerd Font Medium.ttf | | M+ 1m Nerd Font Medium |X| M+ 1m Nerd Font Medium | | Regular |X| M+ 1m Nerd Font | | Medium --|M+ 1m medium Nerd Font.ttf | | M+ 1m medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 1m | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1mn-medium.ttf | | M+ 1mn medium | | M+ 1mn medium | | Regular | | M+ 1mn | | medium -+|M+ 1mn Nerd Font Medium.ttf | | M+ 1mn Nerd Font Medium |X| M+ 1mn Nerd Font Medium | | Regular |X| M+ 1mn Nerd Font | | Medium --|M+ 1mn medium Nerd Font.ttf | | M+ 1mn medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 1mn | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1p-medium.ttf | | M+ 1p medium | | M+ 1p medium | | Regular | | M+ 1p | | medium -+|M+ 1p Nerd Font Medium.ttf | | M+ 1p Nerd Font Medium |X| M+ 1p Nerd Font Medium | | Regular |X| M+ 1p Nerd Font | | Medium --|M+ 1p medium Nerd Font.ttf | | M+ 1p medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2c-medium.ttf | | M+ 2c medium | | M+ 2c medium | | Regular | | M+ 2c | | medium -+|M+ 2c Nerd Font Medium.ttf | | M+ 2c Nerd Font Medium |X| M+ 2c Nerd Font Medium | | Regular |X| M+ 2c Nerd Font | | Medium --|M+ 2c medium Nerd Font.ttf | | M+ 2c medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2m-medium.ttf | | M+ 2m medium | | M+ 2m medium | | Regular | | M+ 2m | | medium -+|M+ 2m Nerd Font Medium.ttf | | M+ 2m Nerd Font Medium |X| M+ 2m Nerd Font Medium | | Regular |X| M+ 2m Nerd Font | | Medium --|M+ 2m medium Nerd Font.ttf | | M+ 2m medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 2m | | medium -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2p-medium.ttf | | M+ 2p medium | | M+ 2p medium | | Regular | | M+ 2p | | medium -+|M+ 2p Nerd Font Medium.ttf | | M+ 2p Nerd Font Medium |X| M+ 2p Nerd Font Medium | | Regular |X| M+ 2p Nerd Font | | Medium --|M+ 2p medium Nerd Font.ttf | | M+ 2p medium Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | medium -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1c-regular.ttf | | M+ 1c | | M+ 1c | | Regular | | M+ 1c | | regular -+|M+ 1c Nerd Font.ttf | | M+ 1c Nerd Font |X| M+ 1c Nerd Font | | Regular |X| | | --|M+ 1c Nerd Font.ttf | | M+ 1c Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1mn-regular.ttf | | M+ 1mn | | M+ 1mn | | Regular | | M+ 1mn | | regular -+|M+ 1mn Nerd Font.ttf | | M+ 1mn Nerd Font |X| M+ 1mn Nerd Font | | Regular |X| | | --|M+ 1mn Nerd Font.ttf | | M+ 1mn Nerd Font | | mplus Nerd Font | | Regular | | M+ 1mn | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1m-regular.ttf | | M+ 1m | | M+ 1m | | Regular | | M+ 1m | | regular -+|M+ 1m Nerd Font.ttf | | M+ 1m Nerd Font |X| M+ 1m Nerd Font | | Regular |X| | | --|M+ 1m Nerd Font.ttf | | M+ 1m Nerd Font | | mplus Nerd Font | | Regular | | M+ 1m | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-1p-regular.ttf | | M+ 1p | | M+ 1p | | Regular | | M+ 1p | | regular -+|M+ 1p Nerd Font.ttf | | M+ 1p Nerd Font |X| M+ 1p Nerd Font | | Regular |X| | | --|M+ 1p Nerd Font.ttf | | M+ 1p Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2c-regular.ttf | | M+ 2c | | M+ 2c | | Regular | | M+ 2c | | regular -+|M+ 2c Nerd Font.ttf | | M+ 2c Nerd Font |X| M+ 2c Nerd Font | | Regular |X| | | --|M+ 2c Nerd Font.ttf | | M+ 2c Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2m-regular.ttf | | M+ 2m | | M+ 2m | | Regular | | M+ 2m | | regular -+|M+ 2m Nerd Font.ttf | | M+ 2m Nerd Font |X| M+ 2m Nerd Font | | Regular |X| | | --|M+ 2m Nerd Font.ttf | | M+ 2m Nerd Font | | mplus Nerd Font | | Regular | | M+ 2m | | regular -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] The fonts name is M+ not Mplus [8] ->|mplus-2p-regular.ttf | | M+ 2p | | M+ 2p | | Regular | | M+ 2p | | regular -+|M+ 2p Nerd Font.ttf | | M+ 2p Nerd Font |X| M+ 2p Nerd Font | | Regular |X| | | --|M+ 2p Nerd Font.ttf | | M+ 2p Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | regular -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1c-thin.ttf | | M+ 1c thin | | M+ 1c thin | | Regular | | M+ 1c | | thin -+|M+ 1c Nerd Font Thin.ttf | | M+ 1c Nerd Font Thin |X| M+ 1c Nerd Font Thin | | Regular |X| M+ 1c Nerd Font | | Thin --|M+ 1c thin Nerd Font.ttf | | M+ 1c thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 1c | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1mn-thin.ttf | | M+ 1mn thin | | M+ 1mn thin | | Regular | | M+ 1mn | | thin -+|M+ 1mn Nerd Font Thin.ttf | | M+ 1mn Nerd Font Thin |X| M+ 1mn Nerd Font Thin | | Regular |X| M+ 1mn Nerd Font | | Thin --|M+ 1mn thin Nerd Font.ttf | | M+ 1mn thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 1mn | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1m-thin.ttf | | M+ 1m thin | | M+ 1m thin | | Regular | | M+ 1m | | thin -+|M+ 1m Nerd Font Thin.ttf | | M+ 1m Nerd Font Thin |X| M+ 1m Nerd Font Thin | | Regular |X| M+ 1m Nerd Font | | Thin --|M+ 1m thin Nerd Font.ttf | | M+ 1m thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 1m | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-1p-thin.ttf | | M+ 1p thin | | M+ 1p thin | | Regular | | M+ 1p | | thin -+|M+ 1p Nerd Font Thin.ttf | | M+ 1p Nerd Font Thin |X| M+ 1p Nerd Font Thin | | Regular |X| M+ 1p Nerd Font | | Thin --|M+ 1p thin Nerd Font.ttf | | M+ 1p thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 1p | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2c-thin.ttf | | M+ 2c thin | | M+ 2c thin | | Regular | | M+ 2c | | thin -+|M+ 2c Nerd Font Thin.ttf | | M+ 2c Nerd Font Thin |X| M+ 2c Nerd Font Thin | | Regular |X| M+ 2c Nerd Font | | Thin --|M+ 2c thin Nerd Font.ttf | | M+ 2c thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 2c | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2m-thin.ttf | | M+ 2m thin | | M+ 2m thin | | Regular | | M+ 2m | | thin -+|M+ 2m Nerd Font Thin.ttf | | M+ 2m Nerd Font Thin |X| M+ 2m Nerd Font Thin | | Regular |X| M+ 2m Nerd Font | | Thin --|M+ 2m thin Nerd Font.ttf | | M+ 2m thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 2m | | thin -#### Add weight/style to family [1] The fonts name is M+ not Mplus [8] ->|mplus-2p-thin.ttf | | M+ 2p thin | | M+ 2p thin | | Regular | | M+ 2p | | thin -+|M+ 2p Nerd Font Thin.ttf | | M+ 2p Nerd Font Thin |X| M+ 2p Nerd Font Thin | | Regular |X| M+ 2p Nerd Font | | Thin --|M+ 2p thin Nerd Font.ttf | | M+ 2p thin Nerd Font | | mplus Nerd Font | | Regular | | M+ 2p | | thin -#### Change regular-equivalent name to Regular [4] Drop unneeded Typogr.Family/Typogr.Style [5] ->|NotoMono-Regular.ttf | | Noto Mono | | Noto Mono | | Regular | | | | -+|Noto Mono Nerd Font.ttf | | Noto Mono Nerd Font | | NotoMono Nerd Font |X| Regular | | | | --|Noto Mono Nerd Font.ttf | | Noto Mono Nerd Font | | NotoMono Nerd Font | | Book | | NotoMono Nerd Font | | -#### Add weight/style to family [1] ->|NotoSansMono-Black.ttf | | Noto Sans Mono Black | | Noto Sans Mono Blk | | Regular | | Noto Sans Mono | | Black -+|Noto Sans Mono Nerd Font Black.ttf | | Noto Sans Mono Nerd Font Black |X| NotoSansMono Nerd Font Blk | | Regular | | NotoSansMono Nerd Font | | Black --|Noto Sans Mono Black Nerd Font.ttf | | Noto Sans Mono Black Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Black -#### Add weight/style to family [1] ->|NotoSansMono-CondensedBlack.ttf | | Noto Sans Mono Condensed Black | | Noto Sans Mono Cond Blk | | Regular | | Noto Sans Mono | | Condensed Black -+|Noto Sans Mono Nerd Font Condensed Black.ttf | | Noto Sans Mono Nerd Font Condensed Black |X| NotoSansMono Nerd Font Cond Blk | | Regular | | NotoSansMono Nerd Font | | Condensed Black --|Noto Sans Mono Condensed Black Nerd Font.ttf | | Noto Sans Mono Condensed Black Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed Black -#### Add weight/style to family [1] ->|NotoSansMono-CondensedBold.ttf | | Noto Sans Mono Condensed Bold | | Noto Sans Mono Cond | | Bold | | Noto Sans Mono | | Condensed Bold -+|Noto Sans Mono Nerd Font Condensed Bold.ttf | | Noto Sans Mono Nerd Font Condensed Bold |X| NotoSansMono Nerd Font Cond | | Bold | | NotoSansMono Nerd Font | | Condensed Bold --|Noto Sans Mono Condensed Bold Nerd Font.ttf | | Noto Sans Mono Condensed Bold Nerd Font | | NotoSansMono Nerd Font | | Bold | | NotoSansMono Nerd Font | | Condensed Bold -#### Add weight/style to family [1] ->|NotoSansMono-CondensedExtraBold.ttf | | Noto Sans Mono Condensed ExtraBold | | Noto Sans Mono Cond ExtBd | | Regular | | Noto Sans Mono | | Condensed ExtraBold -+|Noto Sans Mono Nerd Font Condensed ExtraBold.ttf | | Noto Sans Mono Nerd Font Condensed ExtraBold |X| NotoSansMono Nerd Font Cond ExtBd | | Regular | | NotoSansMono Nerd Font | | Condensed ExtraBold --|Noto Sans Mono Condensed ExtraBold Nerd Font.ttf | | Noto Sans Mono Condensed ExtraBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed ExtraBold -#### Add weight/style to family [1] ->|NotoSansMono-CondensedExtraLight.ttf | | Noto Sans Mono Condensed ExtraLight | | Noto Sans Mono Cond ExtLt | | Regular | | Noto Sans Mono | | Condensed ExtraLight -+|Noto Sans Mono Nerd Font Condensed ExtraLight.ttf | | Noto Sans Mono Nerd Font Condensed ExtraLight |X| NotoSansMono Nerd Font Cond ExtLt | | Regular | | NotoSansMono Nerd Font | | Condensed ExtraLight --|Noto Sans Mono Condensed ExtraLight Nerd Font.ttf | | Noto Sans Mono Condensed ExtraLight Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed ExtraLight -#### Add weight/style to family [1] ->|NotoSansMono-CondensedLight.ttf | | Noto Sans Mono Condensed Light | | Noto Sans Mono Cond Light | | Regular | | Noto Sans Mono | | Condensed Light -+|Noto Sans Mono Nerd Font Condensed Light.ttf | | Noto Sans Mono Nerd Font Condensed Light |X| NotoSansMono Nerd Font Cond Light | | Regular | | NotoSansMono Nerd Font | | Condensed Light --|Noto Sans Mono Condensed Light Nerd Font.ttf | | Noto Sans Mono Condensed Light Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed Light -#### Add weight/style to family [1] ->|NotoSansMono-CondensedMedium.ttf | | Noto Sans Mono Condensed Medium | | Noto Sans Mono Cond Med | | Regular | | Noto Sans Mono | | Condensed Medium -+|Noto Sans Mono Nerd Font Condensed Medium.ttf | | Noto Sans Mono Nerd Font Condensed Medium |X| NotoSansMono Nerd Font Cond Med | | Regular | | NotoSansMono Nerd Font | | Condensed Medium --|Noto Sans Mono Condensed Medium Nerd Font.ttf | | Noto Sans Mono Condensed Medium Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed Medium -#### Add weight/style to family [1] ->|NotoSansMono-CondensedSemiBold.ttf | | Noto Sans Mono Condensed SemiBold | | Noto Sans Mono Cond SemBd | | Regular | | Noto Sans Mono | | Condensed SemiBold -+|Noto Sans Mono Nerd Font Condensed SemiBold.ttf | | Noto Sans Mono Nerd Font Condensed SemiBold |X| NotoSansMono Nerd Font Cond SemBd | | Regular | | NotoSansMono Nerd Font | | Condensed SemiBold --|Noto Sans Mono Condensed SemiBold Nerd Font.ttf | | Noto Sans Mono Condensed SemiBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed SemiBold -#### Add weight/style to family [1] ->|NotoSansMono-CondensedThin.ttf | | Noto Sans Mono Condensed Thin | | Noto Sans Mono Cond Thin | | Regular | | Noto Sans Mono | | Condensed Thin -+|Noto Sans Mono Nerd Font Condensed Thin.ttf | | Noto Sans Mono Nerd Font Condensed Thin |X| NotoSansMono Nerd Font Cond Thin | | Regular | | NotoSansMono Nerd Font | | Condensed Thin --|Noto Sans Mono Condensed Thin Nerd Font.ttf | | Noto Sans Mono Condensed Thin Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed Thin -#### Add weight/style to family [1] ->|NotoSansMono-Condensed.ttf | | Noto Sans Mono Condensed | | Noto Sans Mono Cond | | Regular | | Noto Sans Mono | | Condensed -+|Noto Sans Mono Nerd Font Condensed.ttf | | Noto Sans Mono Nerd Font Condensed |X| NotoSansMono Nerd Font Cond | | Regular | | NotoSansMono Nerd Font | | Condensed --|Noto Sans Mono Condensed Nerd Font.ttf | | Noto Sans Mono Condensed Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Condensed -#### Add weight/style to family [1] ->|NotoSansMono-ExtraBold.ttf | | Noto Sans Mono ExtraBold | | Noto Sans Mono ExtBd | | Regular | | Noto Sans Mono | | ExtraBold -+|Noto Sans Mono Nerd Font ExtraBold.ttf | | Noto Sans Mono Nerd Font ExtraBold |X| NotoSansMono Nerd Font ExtBd | | Regular | | NotoSansMono Nerd Font | | ExtraBold --|Noto Sans Mono ExtraBold Nerd Font.ttf | | Noto Sans Mono ExtraBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedBlack.ttf | | Noto Sans Mono ExtraCondensed Black | | Noto Sans Mono ExtCond Blk | | Regular | | Noto Sans Mono | | ExtraCondensed Black -+|Noto Sans Mono Nerd Font ExtraCondensed Black.ttf | | Noto Sans Mono Nerd Font ExtraCondensed Black |X| NotoSansMono Nerd Font ExtCond Blk | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Black --|Noto Sans Mono ExtraCondensed Black Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Black Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Black -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedBold.ttf | | Noto Sans Mono ExtraCondensed Bold | | Noto Sans Mono ExtCond | | Bold | | Noto Sans Mono | | ExtraCondensed Bold -+|Noto Sans Mono Nerd Font ExtraCondensed Bold.ttf | | Noto Sans Mono Nerd Font ExtraCondensed Bold |X| NotoSansMono Nerd Font ExtCond | | Bold | | NotoSansMono Nerd Font | | ExtraCondensed Bold --|Noto Sans Mono ExtraCondensed Bold Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Bold Nerd Font | | NotoSansMono Nerd Font | | Bold | | NotoSansMono Nerd Font | | ExtraCondensed Bold -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedExtraBold.ttf | | Noto Sans Mono ExtraCondensed ExtraBold | | Noto Sans Mono ExtCond ExtBd | | Regular | | Noto Sans Mono | | ExtraCondensed ExtraBold -+|Noto Sans Mono Nerd Font ExtraCondensed ExtraBold. | | Noto Sans Mono Nerd Font ExtraCondensed ExtraBold |X| NotoSansMono Nerd Font ExtCond ExtBd | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed ExtraBold --|Noto Sans Mono ExtraCondensed ExtraBold Nerd Font. | | Noto Sans Mono ExtraCondensed ExtraBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedExtraLight.ttf | | Noto Sans Mono ExtraCondensed ExtraLight | | Noto Sans Mono ExtCond ExtLt | | Regular | | Noto Sans Mono | | ExtraCondensed ExtraLight -+|Noto Sans Mono Nerd Font ExtraCondensed ExtraLight | | Noto Sans Mono Nerd Font ExtraCondensed ExtraLight |X| NotoSansMono Nerd Font ExtCond ExtLt | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed ExtraLight --|Noto Sans Mono ExtraCondensed ExtraLight Nerd Font | | Noto Sans Mono ExtraCondensed ExtraLight Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedLight.ttf | | Noto Sans Mono ExtraCondensed Light | | Noto Sans Mono ExtCond Light | | Regular | | Noto Sans Mono | | ExtraCondensed Light -+|Noto Sans Mono Nerd Font ExtraCondensed Light.ttf | | Noto Sans Mono Nerd Font ExtraCondensed Light |X| NotoSansMono Nerd Font ExtCond Light | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Light --|Noto Sans Mono ExtraCondensed Light Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Light Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Light -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedMedium.ttf | | Noto Sans Mono ExtraCondensed Medium | | Noto Sans Mono ExtCond Med | | Regular | | Noto Sans Mono | | ExtraCondensed Medium -+|Noto Sans Mono Nerd Font ExtraCondensed Medium.ttf | | Noto Sans Mono Nerd Font ExtraCondensed Medium |X| NotoSansMono Nerd Font ExtCond Med | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Medium --|Noto Sans Mono ExtraCondensed Medium Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Medium Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Medium -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedSemiBold.ttf | | Noto Sans Mono ExtraCondensed SemiBold | | Noto Sans Mono ExtCond SemBd | | Regular | | Noto Sans Mono | | ExtraCondensed SemiBold -+|Noto Sans Mono Nerd Font ExtraCondensed SemiBold.t | | Noto Sans Mono Nerd Font ExtraCondensed SemiBold |X| NotoSansMono Nerd Font ExtCond SemBd | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed SemiBold --|Noto Sans Mono ExtraCondensed SemiBold Nerd Font.t | | Noto Sans Mono ExtraCondensed SemiBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensedThin.ttf | | Noto Sans Mono ExtraCondensed Thin | | Noto Sans Mono ExtCond Thin | | Regular | | Noto Sans Mono | | ExtraCondensed Thin -+|Noto Sans Mono Nerd Font ExtraCondensed Thin.ttf | | Noto Sans Mono Nerd Font ExtraCondensed Thin |X| NotoSansMono Nerd Font ExtCond Thin | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Thin --|Noto Sans Mono ExtraCondensed Thin Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Thin Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed Thin -#### Add weight/style to family [1] ->|NotoSansMono-ExtraCondensed.ttf | | Noto Sans Mono ExtraCondensed | | Noto Sans Mono ExtCond | | Regular | | Noto Sans Mono | | ExtraCondensed -+|Noto Sans Mono Nerd Font ExtraCondensed.ttf | | Noto Sans Mono Nerd Font ExtraCondensed |X| NotoSansMono Nerd Font ExtCond | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed --|Noto Sans Mono ExtraCondensed Nerd Font.ttf | | Noto Sans Mono ExtraCondensed Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraCondensed -#### Add weight/style to family [1] ->|NotoSansMono-ExtraLight.ttf | | Noto Sans Mono ExtraLight | | Noto Sans Mono ExtLt | | Regular | | Noto Sans Mono | | ExtraLight -+|Noto Sans Mono Nerd Font ExtraLight.ttf | | Noto Sans Mono Nerd Font ExtraLight |X| NotoSansMono Nerd Font ExtLt | | Regular | | NotoSansMono Nerd Font | | ExtraLight --|Noto Sans Mono ExtraLight Nerd Font.ttf | | Noto Sans Mono ExtraLight Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|NotoSansMono-Light.ttf | | Noto Sans Mono Light | | Noto Sans Mono Light | | Regular | | Noto Sans Mono | | Light -+|Noto Sans Mono Nerd Font Light.ttf | | Noto Sans Mono Nerd Font Light |X| NotoSansMono Nerd Font Light | | Regular | | NotoSansMono Nerd Font | | Light --|Noto Sans Mono Light Nerd Font.ttf | | Noto Sans Mono Light Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Light -#### Add weight/style to family [1] ->|NotoSansMono-Medium.ttf | | Noto Sans Mono Medium | | Noto Sans Mono Med | | Regular | | Noto Sans Mono | | Medium -+|Noto Sans Mono Nerd Font Medium.ttf | | Noto Sans Mono Nerd Font Medium |X| NotoSansMono Nerd Font Med | | Regular | | NotoSansMono Nerd Font | | Medium --|Noto Sans Mono Medium Nerd Font.ttf | | Noto Sans Mono Medium Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Medium -#### Add weight/style to family [1] ->|NotoSansMono-SemiBold.ttf | | Noto Sans Mono SemiBold | | Noto Sans Mono SemBd | | Regular | | Noto Sans Mono | | SemiBold -+|Noto Sans Mono Nerd Font SemiBold.ttf | | Noto Sans Mono Nerd Font SemiBold |X| NotoSansMono Nerd Font SemBd | | Regular | | NotoSansMono Nerd Font | | SemiBold --|Noto Sans Mono SemiBold Nerd Font.ttf | | Noto Sans Mono SemiBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedBlack.ttf | | Noto Sans Mono SemiCondensed Black | | Noto Sans Mono SemCond Blk | | Regular | | Noto Sans Mono | | SemiCondensed Black -+|Noto Sans Mono Nerd Font SemiCondensed Black.ttf | | Noto Sans Mono Nerd Font SemiCondensed Black |X| NotoSansMono Nerd Font SemCond Blk | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Black --|Noto Sans Mono SemiCondensed Black Nerd Font.ttf | | Noto Sans Mono SemiCondensed Black Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Black -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedBold.ttf | | Noto Sans Mono SemiCondensed Bold | | Noto Sans Mono SemCond | | Bold | | Noto Sans Mono | | SemiCondensed Bold -+|Noto Sans Mono Nerd Font SemiCondensed Bold.ttf | | Noto Sans Mono Nerd Font SemiCondensed Bold |X| NotoSansMono Nerd Font SemCond | | Bold | | NotoSansMono Nerd Font | | SemiCondensed Bold --|Noto Sans Mono SemiCondensed Bold Nerd Font.ttf | | Noto Sans Mono SemiCondensed Bold Nerd Font | | NotoSansMono Nerd Font | | Bold | | NotoSansMono Nerd Font | | SemiCondensed Bold -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedExtraBold.ttf | | Noto Sans Mono SemiCondensed ExtraBold | | Noto Sans Mono SemCond ExtBd | | Regular | | Noto Sans Mono | | SemiCondensed ExtraBold -+|Noto Sans Mono Nerd Font SemiCondensed ExtraBold.t | | Noto Sans Mono Nerd Font SemiCondensed ExtraBold |X| NotoSansMono Nerd Font SemCond ExtBd | | Regular | | NotoSansMono Nerd Font | | SemiCondensed ExtraBold --|Noto Sans Mono SemiCondensed ExtraBold Nerd Font.t | | Noto Sans Mono SemiCondensed ExtraBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedExtraLight.ttf | | Noto Sans Mono SemiCondensed ExtraLight | | Noto Sans Mono SemCond ExtLt | | Regular | | Noto Sans Mono | | SemiCondensed ExtraLight -+|Noto Sans Mono Nerd Font SemiCondensed ExtraLight. | | Noto Sans Mono Nerd Font SemiCondensed ExtraLight |X| NotoSansMono Nerd Font SemCond ExtLt | | Regular | | NotoSansMono Nerd Font | | SemiCondensed ExtraLight --|Noto Sans Mono SemiCondensed ExtraLight Nerd Font. | | Noto Sans Mono SemiCondensed ExtraLight Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedLight.ttf | | Noto Sans Mono SemiCondensed Light | | Noto Sans Mono SemCond Light | | Regular | | Noto Sans Mono | | SemiCondensed Light -+|Noto Sans Mono Nerd Font SemiCondensed Light.ttf | | Noto Sans Mono Nerd Font SemiCondensed Light |X| NotoSansMono Nerd Font SemCond Light | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Light --|Noto Sans Mono SemiCondensed Light Nerd Font.ttf | | Noto Sans Mono SemiCondensed Light Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Light -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedMedium.ttf | | Noto Sans Mono SemiCondensed Medium | | Noto Sans Mono SemCond Med | | Regular | | Noto Sans Mono | | SemiCondensed Medium -+|Noto Sans Mono Nerd Font SemiCondensed Medium.ttf | | Noto Sans Mono Nerd Font SemiCondensed Medium |X| NotoSansMono Nerd Font SemCond Med | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Medium --|Noto Sans Mono SemiCondensed Medium Nerd Font.ttf | | Noto Sans Mono SemiCondensed Medium Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Medium -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedSemiBold.ttf | | Noto Sans Mono SemiCondensed SemiBold | | Noto Sans Mono SemCond SemBd | | Regular | | Noto Sans Mono | | SemiCondensed SemiBold -+|Noto Sans Mono Nerd Font SemiCondensed SemiBold.tt | | Noto Sans Mono Nerd Font SemiCondensed SemiBold |X| NotoSansMono Nerd Font SemCond SemBd | | Regular | | NotoSansMono Nerd Font | | SemiCondensed SemiBold --|Noto Sans Mono SemiCondensed SemiBold Nerd Font.tt | | Noto Sans Mono SemiCondensed SemiBold Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensedThin.ttf | | Noto Sans Mono SemiCondensed Thin | | Noto Sans Mono SemCond Thin | | Regular | | Noto Sans Mono | | SemiCondensed Thin -+|Noto Sans Mono Nerd Font SemiCondensed Thin.ttf | | Noto Sans Mono Nerd Font SemiCondensed Thin |X| NotoSansMono Nerd Font SemCond Thin | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Thin --|Noto Sans Mono SemiCondensed Thin Nerd Font.ttf | | Noto Sans Mono SemiCondensed Thin Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed Thin -#### Add weight/style to family [1] ->|NotoSansMono-SemiCondensed.ttf | | Noto Sans Mono SemiCondensed | | Noto Sans Mono SemCond | | Regular | | Noto Sans Mono | | SemiCondensed -+|Noto Sans Mono Nerd Font SemiCondensed.ttf | | Noto Sans Mono Nerd Font SemiCondensed |X| NotoSansMono Nerd Font SemCond | | Regular | | NotoSansMono Nerd Font | | SemiCondensed --|Noto Sans Mono SemiCondensed Nerd Font.ttf | | Noto Sans Mono SemiCondensed Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | SemiCondensed -#### Add weight/style to family [1] ->|NotoSansMono-Thin.ttf | | Noto Sans Mono Thin | | Noto Sans Mono Thin | | Regular | | Noto Sans Mono | | Thin -+|Noto Sans Mono Nerd Font Thin.ttf | | Noto Sans Mono Nerd Font Thin |X| NotoSansMono Nerd Font Thin | | Regular | | NotoSansMono Nerd Font | | Thin --|Noto Sans Mono Thin Nerd Font.ttf | | Noto Sans Mono Thin Nerd Font | | NotoSansMono Nerd Font | | Regular | | NotoSansMono Nerd Font | | Thin -#### Add weight/style to family [1] ->|NotoSans-CondensedBlackItalic.ttf | | Noto Sans Condensed Black Italic | | Noto Sans Cond Blk | | Italic | | Noto Sans | | Condensed Black Italic -+|Noto Sans Nerd Font Condensed Black Italic.ttf | | Noto Sans Nerd Font Condensed Black Italic |X| NotoSans Nerd Font Cond Blk | | Italic | | NotoSans Nerd Font | | Condensed Black Italic --|Noto Sans Condensed Black Italic Nerd Font.ttf | | Noto Sans Condensed Black Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed Black Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedBlack.ttf | | Noto Sans Condensed Black | | Noto Sans Cond Blk | | Regular | | Noto Sans | | Condensed Black -+|Noto Sans Nerd Font Condensed Black.ttf | | Noto Sans Nerd Font Condensed Black |X| NotoSans Nerd Font Cond Blk | | Regular | | NotoSans Nerd Font | | Condensed Black --|Noto Sans Condensed Black Nerd Font.ttf | | Noto Sans Condensed Black Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed Black -#### Add weight/style to family [1] ->|NotoSans-CondensedBoldItalic.ttf | | Noto Sans Condensed Bold Italic | | Noto Sans Cond | | Bold Italic | | Noto Sans | | Condensed Bold Italic -+|Noto Sans Nerd Font Condensed Bold Italic.ttf | | Noto Sans Nerd Font Condensed Bold Italic |X| NotoSans Nerd Font Cond | | Bold Italic | | NotoSans Nerd Font | | Condensed Bold Italic --|Noto Sans Condensed Bold Italic Nerd Font.ttf | | Noto Sans Condensed Bold Italic Nerd Font | | NotoSans Nerd Font | | Bold Italic | | NotoSans Nerd Font | | Condensed Bold Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedBold.ttf | | Noto Sans Condensed Bold | | Noto Sans Cond | | Bold | | Noto Sans | | Condensed Bold -+|Noto Sans Nerd Font Condensed Bold.ttf | | Noto Sans Nerd Font Condensed Bold |X| NotoSans Nerd Font Cond | | Bold | | NotoSans Nerd Font | | Condensed Bold --|Noto Sans Condensed Bold Nerd Font.ttf | | Noto Sans Condensed Bold Nerd Font | | NotoSans Nerd Font | | Bold | | NotoSans Nerd Font | | Condensed Bold -#### Add weight/style to family [1] ->|NotoSans-CondensedExtraBoldItalic.ttf | | Noto Sans Condensed ExtraBold Italic | | Noto Sans Cond ExtBd | | Italic | | Noto Sans | | Condensed ExtraBold Italic -+|Noto Sans Nerd Font Condensed ExtraBold Italic.ttf | | Noto Sans Nerd Font Condensed ExtraBold Italic |X| NotoSans Nerd Font Cond ExtBd | | Italic | | NotoSans Nerd Font | | Condensed ExtraBold Italic --|Noto Sans Condensed ExtraBold Italic Nerd Font.ttf | | Noto Sans Condensed ExtraBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedExtraBold.ttf | | Noto Sans Condensed ExtraBold | | Noto Sans Cond ExtBd | | Regular | | Noto Sans | | Condensed ExtraBold -+|Noto Sans Nerd Font Condensed ExtraBold.ttf | | Noto Sans Nerd Font Condensed ExtraBold |X| NotoSans Nerd Font Cond ExtBd | | Regular | | NotoSans Nerd Font | | Condensed ExtraBold --|Noto Sans Condensed ExtraBold Nerd Font.ttf | | Noto Sans Condensed ExtraBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed ExtraBold -#### Add weight/style to family [1] ->|NotoSans-CondensedExtraLightItalic.ttf | | Noto Sans Condensed ExtraLight Italic | | Noto Sans Cond ExtLt | | Italic | | Noto Sans | | Condensed ExtraLight Italic -+|Noto Sans Nerd Font Condensed ExtraLight Italic.tt | | Noto Sans Nerd Font Condensed ExtraLight Italic |X| NotoSans Nerd Font Cond ExtLt | | Italic | | NotoSans Nerd Font | | Condensed ExtraLight Italic --|Noto Sans Condensed ExtraLight Italic Nerd Font.tt | | Noto Sans Condensed ExtraLight Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedExtraLight.ttf | | Noto Sans Condensed ExtraLight | | Noto Sans Cond ExtLt | | Regular | | Noto Sans | | Condensed ExtraLight -+|Noto Sans Nerd Font Condensed ExtraLight.ttf | | Noto Sans Nerd Font Condensed ExtraLight |X| NotoSans Nerd Font Cond ExtLt | | Regular | | NotoSans Nerd Font | | Condensed ExtraLight --|Noto Sans Condensed ExtraLight Nerd Font.ttf | | Noto Sans Condensed ExtraLight Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed ExtraLight -#### Add weight/style to family [1] ->|NotoSans-CondensedItalic.ttf | | Noto Sans Condensed Italic | | Noto Sans Cond | | Italic | | Noto Sans | | Condensed Italic -+|Noto Sans Nerd Font Condensed Italic.ttf | | Noto Sans Nerd Font Condensed Italic |X| NotoSans Nerd Font Cond | | Italic | | NotoSans Nerd Font | | Condensed Italic --|Noto Sans Condensed Italic Nerd Font.ttf | | Noto Sans Condensed Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedLightItalic.ttf | | Noto Sans Condensed Light Italic | | Noto Sans Cond Light | | Italic | | Noto Sans | | Condensed Light Italic -+|Noto Sans Nerd Font Condensed Light Italic.ttf | | Noto Sans Nerd Font Condensed Light Italic |X| NotoSans Nerd Font Cond Light | | Italic | | NotoSans Nerd Font | | Condensed Light Italic --|Noto Sans Condensed Light Italic Nerd Font.ttf | | Noto Sans Condensed Light Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed Light Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedLight.ttf | | Noto Sans Condensed Light | | Noto Sans Cond Light | | Regular | | Noto Sans | | Condensed Light -+|Noto Sans Nerd Font Condensed Light.ttf | | Noto Sans Nerd Font Condensed Light |X| NotoSans Nerd Font Cond Light | | Regular | | NotoSans Nerd Font | | Condensed Light --|Noto Sans Condensed Light Nerd Font.ttf | | Noto Sans Condensed Light Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed Light -#### Add weight/style to family [1] ->|NotoSans-CondensedMediumItalic.ttf | | Noto Sans Condensed Medium Italic | | Noto Sans Cond Med | | Italic | | Noto Sans | | Condensed Medium Italic -+|Noto Sans Nerd Font Condensed Medium Italic.ttf | | Noto Sans Nerd Font Condensed Medium Italic |X| NotoSans Nerd Font Cond Med | | Italic | | NotoSans Nerd Font | | Condensed Medium Italic --|Noto Sans Condensed Medium Italic Nerd Font.ttf | | Noto Sans Condensed Medium Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed Medium Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedMedium.ttf | | Noto Sans Condensed Medium | | Noto Sans Cond Med | | Regular | | Noto Sans | | Condensed Medium -+|Noto Sans Nerd Font Condensed Medium.ttf | | Noto Sans Nerd Font Condensed Medium |X| NotoSans Nerd Font Cond Med | | Regular | | NotoSans Nerd Font | | Condensed Medium --|Noto Sans Condensed Medium Nerd Font.ttf | | Noto Sans Condensed Medium Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed Medium -#### Add weight/style to family [1] ->|NotoSans-CondensedSemiBoldItalic.ttf | | Noto Sans Condensed SemiBold Italic | | Noto Sans Cond SemBd | | Italic | | Noto Sans | | Condensed SemiBold Italic -+|Noto Sans Nerd Font Condensed SemiBold Italic.ttf | | Noto Sans Nerd Font Condensed SemiBold Italic |X| NotoSans Nerd Font Cond SemBd | | Italic | | NotoSans Nerd Font | | Condensed SemiBold Italic --|Noto Sans Condensed SemiBold Italic Nerd Font.ttf | | Noto Sans Condensed SemiBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedSemiBold.ttf | | Noto Sans Condensed SemiBold | | Noto Sans Cond SemBd | | Regular | | Noto Sans | | Condensed SemiBold -+|Noto Sans Nerd Font Condensed SemiBold.ttf | | Noto Sans Nerd Font Condensed SemiBold |X| NotoSans Nerd Font Cond SemBd | | Regular | | NotoSans Nerd Font | | Condensed SemiBold --|Noto Sans Condensed SemiBold Nerd Font.ttf | | Noto Sans Condensed SemiBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed SemiBold -#### Add weight/style to family [1] ->|NotoSans-CondensedThinItalic.ttf | | Noto Sans Condensed Thin Italic | | Noto Sans Cond Thin | | Italic | | Noto Sans | | Condensed Thin Italic -+|Noto Sans Nerd Font Condensed Thin Italic.ttf | | Noto Sans Nerd Font Condensed Thin Italic |X| NotoSans Nerd Font Cond Thin | | Italic | | NotoSans Nerd Font | | Condensed Thin Italic --|Noto Sans Condensed Thin Italic Nerd Font.ttf | | Noto Sans Condensed Thin Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Condensed Thin Italic -#### Add weight/style to family [1] ->|NotoSans-CondensedThin.ttf | | Noto Sans Condensed Thin | | Noto Sans Cond Thin | | Regular | | Noto Sans | | Condensed Thin -+|Noto Sans Nerd Font Condensed Thin.ttf | | Noto Sans Nerd Font Condensed Thin |X| NotoSans Nerd Font Cond Thin | | Regular | | NotoSans Nerd Font | | Condensed Thin --|Noto Sans Condensed Thin Nerd Font.ttf | | Noto Sans Condensed Thin Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed Thin -#### Add weight/style to family [1] ->|NotoSans-Condensed.ttf | | Noto Sans Condensed | | Noto Sans Cond | | Regular | | Noto Sans | | Condensed -+|Noto Sans Nerd Font Condensed.ttf | | Noto Sans Nerd Font Condensed |X| NotoSans Nerd Font Cond | | Regular | | NotoSans Nerd Font | | Condensed --|Noto Sans Condensed Nerd Font.ttf | | Noto Sans Condensed Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Condensed -#### Add weight/style to family [1] ->|NotoSans-ExtraBoldItalic.ttf | | Noto Sans ExtraBold Italic | | Noto Sans ExtBd | | Italic | | Noto Sans | | ExtraBold Italic -+|Noto Sans Nerd Font ExtraBold Italic.ttf | | Noto Sans Nerd Font ExtraBold Italic |X| NotoSans Nerd Font ExtBd | | Italic | | NotoSans Nerd Font | | ExtraBold Italic --|Noto Sans ExtraBold Italic Nerd Font.ttf | | Noto Sans ExtraBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraBold.ttf | | Noto Sans ExtraBold | | Noto Sans ExtBd | | Regular | | Noto Sans | | ExtraBold -+|Noto Sans Nerd Font ExtraBold.ttf | | Noto Sans Nerd Font ExtraBold |X| NotoSans Nerd Font ExtBd | | Regular | | NotoSans Nerd Font | | ExtraBold --|Noto Sans ExtraBold Nerd Font.ttf | | Noto Sans ExtraBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedBlackItalic.ttf | | Noto Sans ExtraCondensed Black Italic | | Noto Sans ExtCond Blk | | Italic | | Noto Sans | | ExtraCondensed Black Italic -+|Noto Sans Nerd Font ExtraCondensed Black Italic.tt | | Noto Sans Nerd Font ExtraCondensed Black Italic |X| NotoSans Nerd Font ExtCond Blk | | Italic | | NotoSans Nerd Font | | ExtraCondensed Black Italic --|Noto Sans ExtraCondensed Black Italic Nerd Font.tt | | Noto Sans ExtraCondensed Black Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed Black Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedBlack.ttf | | Noto Sans ExtraCondensed Black | | Noto Sans ExtCond Blk | | Regular | | Noto Sans | | ExtraCondensed Black -+|Noto Sans Nerd Font ExtraCondensed Black.ttf | | Noto Sans Nerd Font ExtraCondensed Black |X| NotoSans Nerd Font ExtCond Blk | | Regular | | NotoSans Nerd Font | | ExtraCondensed Black --|Noto Sans ExtraCondensed Black Nerd Font.ttf | | Noto Sans ExtraCondensed Black Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed Black -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedBoldItalic.ttf | | Noto Sans ExtraCondensed Bold Italic | | Noto Sans ExtCond | | Bold Italic | | Noto Sans | | ExtraCondensed Bold Italic -+|Noto Sans Nerd Font ExtraCondensed Bold Italic.ttf | | Noto Sans Nerd Font ExtraCondensed Bold Italic |X| NotoSans Nerd Font ExtCond | | Bold Italic | | NotoSans Nerd Font | | ExtraCondensed Bold Italic --|Noto Sans ExtraCondensed Bold Italic Nerd Font.ttf | | Noto Sans ExtraCondensed Bold Italic Nerd Font | | NotoSans Nerd Font | | Bold Italic | | NotoSans Nerd Font | | ExtraCondensed Bold Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedBold.ttf | | Noto Sans ExtraCondensed Bold | | Noto Sans ExtCond | | Bold | | Noto Sans | | ExtraCondensed Bold -+|Noto Sans Nerd Font ExtraCondensed Bold.ttf | | Noto Sans Nerd Font ExtraCondensed Bold |X| NotoSans Nerd Font ExtCond | | Bold | | NotoSans Nerd Font | | ExtraCondensed Bold --|Noto Sans ExtraCondensed Bold Nerd Font.ttf | | Noto Sans ExtraCondensed Bold Nerd Font | | NotoSans Nerd Font | | Bold | | NotoSans Nerd Font | | ExtraCondensed Bold -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedExtraBoldItalic.ttf | | Noto Sans ExtraCondensed ExtraBold Italic | | Noto Sans ExtCond ExtBd | | Italic | | Noto Sans | | ExtraCondensed ExtraBold Italic -+|Noto Sans Nerd Font ExtraCondensed ExtraBold Itali | | Noto Sans Nerd Font ExtraCondensed ExtraBold Italic |X| NotoSans Nerd Font ExtCond ExtBd | | Italic | | NotoSans Nerd Font | | ExtraCondensed ExtraBold Italic --|Noto Sans ExtraCondensed ExtraBold Italic Nerd Fon | | Noto Sans ExtraCondensed ExtraBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedExtraBold.ttf | | Noto Sans ExtraCondensed ExtraBold | | Noto Sans ExtCond ExtBd | | Regular | | Noto Sans | | ExtraCondensed ExtraBold -+|Noto Sans Nerd Font ExtraCondensed ExtraBold.ttf | | Noto Sans Nerd Font ExtraCondensed ExtraBold |X| NotoSans Nerd Font ExtCond ExtBd | | Regular | | NotoSans Nerd Font | | ExtraCondensed ExtraBold --|Noto Sans ExtraCondensed ExtraBold Nerd Font.ttf | | Noto Sans ExtraCondensed ExtraBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedExtraLightItalic.ttf | | Noto Sans ExtraCondensed ExtraLight Italic | | Noto Sans ExtCond ExtLt | | Italic | | Noto Sans | | ExtraCondensed ExtraLight Italic -+|Noto Sans Nerd Font ExtraCondensed ExtraLight Ital | | Noto Sans Nerd Font ExtraCondensed ExtraLight Italic |X| NotoSans Nerd Font ExtCond ExtLt | | Italic | | NotoSans Nerd Font | | ExtraCondensed ExtraLight Italic --|Noto Sans ExtraCondensed ExtraLight Italic Nerd Fo | | Noto Sans ExtraCondensed ExtraLight Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedExtraLight.ttf | | Noto Sans ExtraCondensed ExtraLight | | Noto Sans ExtCond ExtLt | | Regular | | Noto Sans | | ExtraCondensed ExtraLight -+|Noto Sans Nerd Font ExtraCondensed ExtraLight.ttf | | Noto Sans Nerd Font ExtraCondensed ExtraLight |X| NotoSans Nerd Font ExtCond ExtLt | | Regular | | NotoSans Nerd Font | | ExtraCondensed ExtraLight --|Noto Sans ExtraCondensed ExtraLight Nerd Font.ttf | | Noto Sans ExtraCondensed ExtraLight Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedItalic.ttf | | Noto Sans ExtraCondensed Italic | | Noto Sans ExtCond | | Italic | | Noto Sans | | ExtraCondensed Italic -+|Noto Sans Nerd Font ExtraCondensed Italic.ttf | | Noto Sans Nerd Font ExtraCondensed Italic |X| NotoSans Nerd Font ExtCond | | Italic | | NotoSans Nerd Font | | ExtraCondensed Italic --|Noto Sans ExtraCondensed Italic Nerd Font.ttf | | Noto Sans ExtraCondensed Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedLightItalic.ttf | | Noto Sans ExtraCondensed Light Italic | | Noto Sans ExtCond Light | | Italic | | Noto Sans | | ExtraCondensed Light Italic -+|Noto Sans Nerd Font ExtraCondensed Light Italic.tt | | Noto Sans Nerd Font ExtraCondensed Light Italic |X| NotoSans Nerd Font ExtCond Light | | Italic | | NotoSans Nerd Font | | ExtraCondensed Light Italic --|Noto Sans ExtraCondensed Light Italic Nerd Font.tt | | Noto Sans ExtraCondensed Light Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed Light Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedLight.ttf | | Noto Sans ExtraCondensed Light | | Noto Sans ExtCond Light | | Regular | | Noto Sans | | ExtraCondensed Light -+|Noto Sans Nerd Font ExtraCondensed Light.ttf | | Noto Sans Nerd Font ExtraCondensed Light |X| NotoSans Nerd Font ExtCond Light | | Regular | | NotoSans Nerd Font | | ExtraCondensed Light --|Noto Sans ExtraCondensed Light Nerd Font.ttf | | Noto Sans ExtraCondensed Light Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed Light -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedMediumItalic.ttf | | Noto Sans ExtraCondensed Medium Italic | | Noto Sans ExtCond Med | | Italic | | Noto Sans | | ExtraCondensed Medium Italic -+|Noto Sans Nerd Font ExtraCondensed Medium Italic.t | | Noto Sans Nerd Font ExtraCondensed Medium Italic |X| NotoSans Nerd Font ExtCond Med | | Italic | | NotoSans Nerd Font | | ExtraCondensed Medium Italic --|Noto Sans ExtraCondensed Medium Italic Nerd Font.t | | Noto Sans ExtraCondensed Medium Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed Medium Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedMedium.ttf | | Noto Sans ExtraCondensed Medium | | Noto Sans ExtCond Med | | Regular | | Noto Sans | | ExtraCondensed Medium -+|Noto Sans Nerd Font ExtraCondensed Medium.ttf | | Noto Sans Nerd Font ExtraCondensed Medium |X| NotoSans Nerd Font ExtCond Med | | Regular | | NotoSans Nerd Font | | ExtraCondensed Medium --|Noto Sans ExtraCondensed Medium Nerd Font.ttf | | Noto Sans ExtraCondensed Medium Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed Medium -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedSemiBoldItalic.ttf | | Noto Sans ExtraCondensed SemiBold Italic | | Noto Sans ExtCond SemBd | | Italic | | Noto Sans | | ExtraCondensed SemiBold Italic -+|Noto Sans Nerd Font ExtraCondensed SemiBold Italic | | Noto Sans Nerd Font ExtraCondensed SemiBold Italic |X| NotoSans Nerd Font ExtCond SemBd | | Italic | | NotoSans Nerd Font | | ExtraCondensed SemiBold Italic --|Noto Sans ExtraCondensed SemiBold Italic Nerd Font | | Noto Sans ExtraCondensed SemiBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedSemiBold.ttf | | Noto Sans ExtraCondensed SemiBold | | Noto Sans ExtCond SemBd | | Regular | | Noto Sans | | ExtraCondensed SemiBold -+|Noto Sans Nerd Font ExtraCondensed SemiBold.ttf | | Noto Sans Nerd Font ExtraCondensed SemiBold |X| NotoSans Nerd Font ExtCond SemBd | | Regular | | NotoSans Nerd Font | | ExtraCondensed SemiBold --|Noto Sans ExtraCondensed SemiBold Nerd Font.ttf | | Noto Sans ExtraCondensed SemiBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedThinItalic.ttf | | Noto Sans ExtraCondensed Thin Italic | | Noto Sans ExtCond Thin | | Italic | | Noto Sans | | ExtraCondensed Thin Italic -+|Noto Sans Nerd Font ExtraCondensed Thin Italic.ttf | | Noto Sans Nerd Font ExtraCondensed Thin Italic |X| NotoSans Nerd Font ExtCond Thin | | Italic | | NotoSans Nerd Font | | ExtraCondensed Thin Italic --|Noto Sans ExtraCondensed Thin Italic Nerd Font.ttf | | Noto Sans ExtraCondensed Thin Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraCondensed Thin Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensedThin.ttf | | Noto Sans ExtraCondensed Thin | | Noto Sans ExtCond Thin | | Regular | | Noto Sans | | ExtraCondensed Thin -+|Noto Sans Nerd Font ExtraCondensed Thin.ttf | | Noto Sans Nerd Font ExtraCondensed Thin |X| NotoSans Nerd Font ExtCond Thin | | Regular | | NotoSans Nerd Font | | ExtraCondensed Thin --|Noto Sans ExtraCondensed Thin Nerd Font.ttf | | Noto Sans ExtraCondensed Thin Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed Thin -#### Add weight/style to family [1] ->|NotoSans-ExtraCondensed.ttf | | Noto Sans ExtraCondensed | | Noto Sans ExtCond | | Regular | | Noto Sans | | ExtraCondensed -+|Noto Sans Nerd Font ExtraCondensed.ttf | | Noto Sans Nerd Font ExtraCondensed |X| NotoSans Nerd Font ExtCond | | Regular | | NotoSans Nerd Font | | ExtraCondensed --|Noto Sans ExtraCondensed Nerd Font.ttf | | Noto Sans ExtraCondensed Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraCondensed -#### Add weight/style to family [1] ->|NotoSans-ExtraLightItalic.ttf | | Noto Sans ExtraLight Italic | | Noto Sans ExtLt | | Italic | | Noto Sans | | ExtraLight Italic -+|Noto Sans Nerd Font ExtraLight Italic.ttf | | Noto Sans Nerd Font ExtraLight Italic |X| NotoSans Nerd Font ExtLt | | Italic | | NotoSans Nerd Font | | ExtraLight Italic --|Noto Sans ExtraLight Italic Nerd Font.ttf | | Noto Sans ExtraLight Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSans-ExtraLight.ttf | | Noto Sans ExtraLight | | Noto Sans ExtLt | | Regular | | Noto Sans | | ExtraLight -+|Noto Sans Nerd Font ExtraLight.ttf | | Noto Sans Nerd Font ExtraLight |X| NotoSans Nerd Font ExtLt | | Regular | | NotoSans Nerd Font | | ExtraLight --|Noto Sans ExtraLight Nerd Font.ttf | | Noto Sans ExtraLight Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|NotoSans-LightItalic.ttf | | Noto Sans Light Italic | | Noto Sans Light | | Italic | | Noto Sans | | Light Italic -+|Noto Sans Nerd Font Light Italic.ttf | | Noto Sans Nerd Font Light Italic |X| NotoSans Nerd Font Light | | Italic | | NotoSans Nerd Font | | Light Italic --|Noto Sans Light Italic Nerd Font.ttf | | Noto Sans Light Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|NotoSans-Light.ttf | | Noto Sans Light | | Noto Sans Light | | Regular | | Noto Sans | | Light -+|Noto Sans Nerd Font Light.ttf | | Noto Sans Nerd Font Light |X| NotoSans Nerd Font Light | | Regular | | NotoSans Nerd Font | | Light --|Noto Sans Light Nerd Font.ttf | | Noto Sans Light Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Light -#### Add weight/style to family [1] ->|NotoSans-MediumItalic.ttf | | Noto Sans Medium Italic | | Noto Sans Med | | Italic | | Noto Sans | | Medium Italic -+|Noto Sans Nerd Font Medium Italic.ttf | | Noto Sans Nerd Font Medium Italic |X| NotoSans Nerd Font Med | | Italic | | NotoSans Nerd Font | | Medium Italic --|Noto Sans Medium Italic Nerd Font.ttf | | Noto Sans Medium Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|NotoSans-Medium.ttf | | Noto Sans Medium | | Noto Sans Med | | Regular | | Noto Sans | | Medium -+|Noto Sans Nerd Font Medium.ttf | | Noto Sans Nerd Font Medium |X| NotoSans Nerd Font Med | | Regular | | NotoSans Nerd Font | | Medium --|Noto Sans Medium Nerd Font.ttf | | Noto Sans Medium Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Medium -#### Add weight/style to family [1] ->|NotoSans-SemiBoldItalic.ttf | | Noto Sans SemiBold Italic | | Noto Sans SemBd | | Italic | | Noto Sans | | SemiBold Italic -+|Noto Sans Nerd Font SemiBold Italic.ttf | | Noto Sans Nerd Font SemiBold Italic |X| NotoSans Nerd Font SemBd | | Italic | | NotoSans Nerd Font | | SemiBold Italic --|Noto Sans SemiBold Italic Nerd Font.ttf | | Noto Sans SemiBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|NotoSans-SemiBold.ttf | | Noto Sans SemiBold | | Noto Sans SemBd | | Regular | | Noto Sans | | SemiBold -+|Noto Sans Nerd Font SemiBold.ttf | | Noto Sans Nerd Font SemiBold |X| NotoSans Nerd Font SemBd | | Regular | | NotoSans Nerd Font | | SemiBold --|Noto Sans SemiBold Nerd Font.ttf | | Noto Sans SemiBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedBlackItalic.ttf | | Noto Sans SemiCondensed Black Italic | | Noto Sans SemCond Blk | | Italic | | Noto Sans | | SemiCondensed Black Italic -+|Noto Sans Nerd Font SemiCondensed Black Italic.ttf | | Noto Sans Nerd Font SemiCondensed Black Italic |X| NotoSans Nerd Font SemCond Blk | | Italic | | NotoSans Nerd Font | | SemiCondensed Black Italic --|Noto Sans SemiCondensed Black Italic Nerd Font.ttf | | Noto Sans SemiCondensed Black Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed Black Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedBlack.ttf | | Noto Sans SemiCondensed Black | | Noto Sans SemCond Blk | | Regular | | Noto Sans | | SemiCondensed Black -+|Noto Sans Nerd Font SemiCondensed Black.ttf | | Noto Sans Nerd Font SemiCondensed Black |X| NotoSans Nerd Font SemCond Blk | | Regular | | NotoSans Nerd Font | | SemiCondensed Black --|Noto Sans SemiCondensed Black Nerd Font.ttf | | Noto Sans SemiCondensed Black Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed Black -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedBoldItalic.ttf | | Noto Sans SemiCondensed Bold Italic | | Noto Sans SemCond | | Bold Italic | | Noto Sans | | SemiCondensed Bold Italic -+|Noto Sans Nerd Font SemiCondensed Bold Italic.ttf | | Noto Sans Nerd Font SemiCondensed Bold Italic |X| NotoSans Nerd Font SemCond | | Bold Italic | | NotoSans Nerd Font | | SemiCondensed Bold Italic --|Noto Sans SemiCondensed Bold Italic Nerd Font.ttf | | Noto Sans SemiCondensed Bold Italic Nerd Font | | NotoSans Nerd Font | | Bold Italic | | NotoSans Nerd Font | | SemiCondensed Bold Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedBold.ttf | | Noto Sans SemiCondensed Bold | | Noto Sans SemCond | | Bold | | Noto Sans | | SemiCondensed Bold -+|Noto Sans Nerd Font SemiCondensed Bold.ttf | | Noto Sans Nerd Font SemiCondensed Bold |X| NotoSans Nerd Font SemCond | | Bold | | NotoSans Nerd Font | | SemiCondensed Bold --|Noto Sans SemiCondensed Bold Nerd Font.ttf | | Noto Sans SemiCondensed Bold Nerd Font | | NotoSans Nerd Font | | Bold | | NotoSans Nerd Font | | SemiCondensed Bold -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedExtraBoldItalic.ttf | | Noto Sans SemiCondensed ExtraBold Italic | | Noto Sans SemCond ExtBd | | Italic | | Noto Sans | | SemiCondensed ExtraBold Italic -+|Noto Sans Nerd Font SemiCondensed ExtraBold Italic | | Noto Sans Nerd Font SemiCondensed ExtraBold Italic |X| NotoSans Nerd Font SemCond ExtBd | | Italic | | NotoSans Nerd Font | | SemiCondensed ExtraBold Italic --|Noto Sans SemiCondensed ExtraBold Italic Nerd Font | | Noto Sans SemiCondensed ExtraBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedExtraBold.ttf | | Noto Sans SemiCondensed ExtraBold | | Noto Sans SemCond ExtBd | | Regular | | Noto Sans | | SemiCondensed ExtraBold -+|Noto Sans Nerd Font SemiCondensed ExtraBold.ttf | | Noto Sans Nerd Font SemiCondensed ExtraBold |X| NotoSans Nerd Font SemCond ExtBd | | Regular | | NotoSans Nerd Font | | SemiCondensed ExtraBold --|Noto Sans SemiCondensed ExtraBold Nerd Font.ttf | | Noto Sans SemiCondensed ExtraBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedExtraLightItalic.ttf | | Noto Sans SemiCondensed ExtraLight Italic | | Noto Sans SemCond ExtLt | | Italic | | Noto Sans | | SemiCondensed ExtraLight Italic -+|Noto Sans Nerd Font SemiCondensed ExtraLight Itali | | Noto Sans Nerd Font SemiCondensed ExtraLight Italic |X| NotoSans Nerd Font SemCond ExtLt | | Italic | | NotoSans Nerd Font | | SemiCondensed ExtraLight Italic --|Noto Sans SemiCondensed ExtraLight Italic Nerd Fon | | Noto Sans SemiCondensed ExtraLight Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedExtraLight.ttf | | Noto Sans SemiCondensed ExtraLight | | Noto Sans SemCond ExtLt | | Regular | | Noto Sans | | SemiCondensed ExtraLight -+|Noto Sans Nerd Font SemiCondensed ExtraLight.ttf | | Noto Sans Nerd Font SemiCondensed ExtraLight |X| NotoSans Nerd Font SemCond ExtLt | | Regular | | NotoSans Nerd Font | | SemiCondensed ExtraLight --|Noto Sans SemiCondensed ExtraLight Nerd Font.ttf | | Noto Sans SemiCondensed ExtraLight Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedItalic.ttf | | Noto Sans SemiCondensed Italic | | Noto Sans SemCond | | Italic | | Noto Sans | | SemiCondensed Italic -+|Noto Sans Nerd Font SemiCondensed Italic.ttf | | Noto Sans Nerd Font SemiCondensed Italic |X| NotoSans Nerd Font SemCond | | Italic | | NotoSans Nerd Font | | SemiCondensed Italic --|Noto Sans SemiCondensed Italic Nerd Font.ttf | | Noto Sans SemiCondensed Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedLightItalic.ttf | | Noto Sans SemiCondensed Light Italic | | Noto Sans SemCond Light | | Italic | | Noto Sans | | SemiCondensed Light Italic -+|Noto Sans Nerd Font SemiCondensed Light Italic.ttf | | Noto Sans Nerd Font SemiCondensed Light Italic |X| NotoSans Nerd Font SemCond Light | | Italic | | NotoSans Nerd Font | | SemiCondensed Light Italic --|Noto Sans SemiCondensed Light Italic Nerd Font.ttf | | Noto Sans SemiCondensed Light Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed Light Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedLight.ttf | | Noto Sans SemiCondensed Light | | Noto Sans SemCond Light | | Regular | | Noto Sans | | SemiCondensed Light -+|Noto Sans Nerd Font SemiCondensed Light.ttf | | Noto Sans Nerd Font SemiCondensed Light |X| NotoSans Nerd Font SemCond Light | | Regular | | NotoSans Nerd Font | | SemiCondensed Light --|Noto Sans SemiCondensed Light Nerd Font.ttf | | Noto Sans SemiCondensed Light Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed Light -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedMediumItalic.ttf | | Noto Sans SemiCondensed Medium Italic | | Noto Sans SemCond Med | | Italic | | Noto Sans | | SemiCondensed Medium Italic -+|Noto Sans Nerd Font SemiCondensed Medium Italic.tt | | Noto Sans Nerd Font SemiCondensed Medium Italic |X| NotoSans Nerd Font SemCond Med | | Italic | | NotoSans Nerd Font | | SemiCondensed Medium Italic --|Noto Sans SemiCondensed Medium Italic Nerd Font.tt | | Noto Sans SemiCondensed Medium Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed Medium Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedMedium.ttf | | Noto Sans SemiCondensed Medium | | Noto Sans SemCond Med | | Regular | | Noto Sans | | SemiCondensed Medium -+|Noto Sans Nerd Font SemiCondensed Medium.ttf | | Noto Sans Nerd Font SemiCondensed Medium |X| NotoSans Nerd Font SemCond Med | | Regular | | NotoSans Nerd Font | | SemiCondensed Medium --|Noto Sans SemiCondensed Medium Nerd Font.ttf | | Noto Sans SemiCondensed Medium Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed Medium -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedSemiBoldItalic.ttf | | Noto Sans SemiCondensed SemiBold Italic | | Noto Sans SemCond SemBd | | Italic | | Noto Sans | | SemiCondensed SemiBold Italic -+|Noto Sans Nerd Font SemiCondensed SemiBold Italic. | | Noto Sans Nerd Font SemiCondensed SemiBold Italic |X| NotoSans Nerd Font SemCond SemBd | | Italic | | NotoSans Nerd Font | | SemiCondensed SemiBold Italic --|Noto Sans SemiCondensed SemiBold Italic Nerd Font. | | Noto Sans SemiCondensed SemiBold Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedSemiBold.ttf | | Noto Sans SemiCondensed SemiBold | | Noto Sans SemCond SemBd | | Regular | | Noto Sans | | SemiCondensed SemiBold -+|Noto Sans Nerd Font SemiCondensed SemiBold.ttf | | Noto Sans Nerd Font SemiCondensed SemiBold |X| NotoSans Nerd Font SemCond SemBd | | Regular | | NotoSans Nerd Font | | SemiCondensed SemiBold --|Noto Sans SemiCondensed SemiBold Nerd Font.ttf | | Noto Sans SemiCondensed SemiBold Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedThinItalic.ttf | | Noto Sans SemiCondensed Thin Italic | | Noto Sans SemCond Thin | | Italic | | Noto Sans | | SemiCondensed Thin Italic -+|Noto Sans Nerd Font SemiCondensed Thin Italic.ttf | | Noto Sans Nerd Font SemiCondensed Thin Italic |X| NotoSans Nerd Font SemCond Thin | | Italic | | NotoSans Nerd Font | | SemiCondensed Thin Italic --|Noto Sans SemiCondensed Thin Italic Nerd Font.ttf | | Noto Sans SemiCondensed Thin Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | SemiCondensed Thin Italic -#### Add weight/style to family [1] ->|NotoSans-SemiCondensedThin.ttf | | Noto Sans SemiCondensed Thin | | Noto Sans SemCond Thin | | Regular | | Noto Sans | | SemiCondensed Thin -+|Noto Sans Nerd Font SemiCondensed Thin.ttf | | Noto Sans Nerd Font SemiCondensed Thin |X| NotoSans Nerd Font SemCond Thin | | Regular | | NotoSans Nerd Font | | SemiCondensed Thin --|Noto Sans SemiCondensed Thin Nerd Font.ttf | | Noto Sans SemiCondensed Thin Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed Thin -#### Add weight/style to family [1] ->|NotoSans-SemiCondensed.ttf | | Noto Sans SemiCondensed | | Noto Sans SemCond | | Regular | | Noto Sans | | SemiCondensed -+|Noto Sans Nerd Font SemiCondensed.ttf | | Noto Sans Nerd Font SemiCondensed |X| NotoSans Nerd Font SemCond | | Regular | | NotoSans Nerd Font | | SemiCondensed --|Noto Sans SemiCondensed Nerd Font.ttf | | Noto Sans SemiCondensed Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | SemiCondensed -#### Add weight/style to family [1] ->|NotoSans-ThinItalic.ttf | | Noto Sans Thin Italic | | Noto Sans Thin | | Italic | | Noto Sans | | Thin Italic -+|Noto Sans Nerd Font Thin Italic.ttf | | Noto Sans Nerd Font Thin Italic |X| NotoSans Nerd Font Thin | | Italic | | NotoSans Nerd Font | | Thin Italic --|Noto Sans Thin Italic Nerd Font.ttf | | Noto Sans Thin Italic Nerd Font | | NotoSans Nerd Font | | Italic | | NotoSans Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|NotoSans-Thin.ttf | | Noto Sans Thin | | Noto Sans Thin | | Regular | | Noto Sans | | Thin -+|Noto Sans Nerd Font Thin.ttf | | Noto Sans Nerd Font Thin |X| NotoSans Nerd Font Thin | | Regular | | NotoSans Nerd Font | | Thin --|Noto Sans Thin Nerd Font.ttf | | Noto Sans Thin Nerd Font | | NotoSans Nerd Font | | Regular | | NotoSans Nerd Font | | Thin -#### Add weight/style to family [1] ->|NotoSerif-BlackItalic.ttf | | Noto Serif Black Italic | | Noto Serif Blk | | Italic | | Noto Serif | | Black Italic -+|Noto Serif Nerd Font Black Italic.ttf | | Noto Serif Nerd Font Black Italic |X| NotoSerif Nerd Font Blk | | Italic | | NotoSerif Nerd Font | | Black Italic --|Noto Serif Black Italic Nerd Font.ttf | | Noto Serif Black Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Black Italic -#### Add weight/style to family [1] ->|NotoSerif-Black.ttf | | Noto Serif Black | | Noto Serif Blk | | Regular | | Noto Serif | | Black -+|Noto Serif Nerd Font Black.ttf | | Noto Serif Nerd Font Black |X| NotoSerif Nerd Font Blk | | Regular | | NotoSerif Nerd Font | | Black --|Noto Serif Black Nerd Font.ttf | | Noto Serif Black Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Black -#### Add weight/style to family [1] ->|NotoSerif-CondensedBlackItalic.ttf | | Noto Serif Condensed Black Italic | | Noto Serif Cond Blk | | Italic | | Noto Serif | | Condensed Black Italic -+|Noto Serif Nerd Font Condensed Black Italic.ttf | | Noto Serif Nerd Font Condensed Black Italic |X| NotoSerif Nerd Font Cond Blk | | Italic | | NotoSerif Nerd Font | | Condensed Black Italic --|Noto Serif Condensed Black Italic Nerd Font.ttf | | Noto Serif Condensed Black Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed Black Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedBlack.ttf | | Noto Serif Condensed Black | | Noto Serif Cond Blk | | Regular | | Noto Serif | | Condensed Black -+|Noto Serif Nerd Font Condensed Black.ttf | | Noto Serif Nerd Font Condensed Black |X| NotoSerif Nerd Font Cond Blk | | Regular | | NotoSerif Nerd Font | | Condensed Black --|Noto Serif Condensed Black Nerd Font.ttf | | Noto Serif Condensed Black Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed Black -#### Add weight/style to family [1] ->|NotoSerif-CondensedBoldItalic.ttf | | Noto Serif Condensed Bold Italic | | Noto Serif Cond | | Bold Italic | | Noto Serif | | Condensed Bold Italic -+|Noto Serif Nerd Font Condensed Bold Italic.ttf | | Noto Serif Nerd Font Condensed Bold Italic |X| NotoSerif Nerd Font Cond | | Bold Italic | | NotoSerif Nerd Font | | Condensed Bold Italic --|Noto Serif Condensed Bold Italic Nerd Font.ttf | | Noto Serif Condensed Bold Italic Nerd Font | | NotoSerif Nerd Font | | Bold Italic | | NotoSerif Nerd Font | | Condensed Bold Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedBold.ttf | | Noto Serif Condensed Bold | | Noto Serif Cond | | Bold | | Noto Serif | | Condensed Bold -+|Noto Serif Nerd Font Condensed Bold.ttf | | Noto Serif Nerd Font Condensed Bold |X| NotoSerif Nerd Font Cond | | Bold | | NotoSerif Nerd Font | | Condensed Bold --|Noto Serif Condensed Bold Nerd Font.ttf | | Noto Serif Condensed Bold Nerd Font | | NotoSerif Nerd Font | | Bold | | NotoSerif Nerd Font | | Condensed Bold -#### Add weight/style to family [1] ->|NotoSerif-CondensedExtraBoldItalic.ttf | | Noto Serif Condensed ExtraBold Italic | | Noto Serif Cond ExtBd | | Italic | | Noto Serif | | Condensed ExtraBold Italic -+|Noto Serif Nerd Font Condensed ExtraBold Italic.tt | | Noto Serif Nerd Font Condensed ExtraBold Italic |X| NotoSerif Nerd Font Cond ExtBd | | Italic | | NotoSerif Nerd Font | | Condensed ExtraBold Italic --|Noto Serif Condensed ExtraBold Italic Nerd Font.tt | | Noto Serif Condensed ExtraBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedExtraBold.ttf | | Noto Serif Condensed ExtraBold | | Noto Serif Cond ExtBd | | Regular | | Noto Serif | | Condensed ExtraBold -+|Noto Serif Nerd Font Condensed ExtraBold.ttf | | Noto Serif Nerd Font Condensed ExtraBold |X| NotoSerif Nerd Font Cond ExtBd | | Regular | | NotoSerif Nerd Font | | Condensed ExtraBold --|Noto Serif Condensed ExtraBold Nerd Font.ttf | | Noto Serif Condensed ExtraBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed ExtraBold -#### Add weight/style to family [1] ->|NotoSerif-CondensedExtraLightItalic.ttf | | Noto Serif Condensed ExtraLight Italic | | Noto Serif Cond ExtLt | | Italic | | Noto Serif | | Condensed ExtraLight Italic -+|Noto Serif Nerd Font Condensed ExtraLight Italic.t | | Noto Serif Nerd Font Condensed ExtraLight Italic |X| NotoSerif Nerd Font Cond ExtLt | | Italic | | NotoSerif Nerd Font | | Condensed ExtraLight Italic --|Noto Serif Condensed ExtraLight Italic Nerd Font.t | | Noto Serif Condensed ExtraLight Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedExtraLight.ttf | | Noto Serif Condensed ExtraLight | | Noto Serif Cond ExtLt | | Regular | | Noto Serif | | Condensed ExtraLight -+|Noto Serif Nerd Font Condensed ExtraLight.ttf | | Noto Serif Nerd Font Condensed ExtraLight |X| NotoSerif Nerd Font Cond ExtLt | | Regular | | NotoSerif Nerd Font | | Condensed ExtraLight --|Noto Serif Condensed ExtraLight Nerd Font.ttf | | Noto Serif Condensed ExtraLight Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed ExtraLight -#### Add weight/style to family [1] ->|NotoSerif-CondensedItalic.ttf | | Noto Serif Condensed Italic | | Noto Serif Cond | | Italic | | Noto Serif | | Condensed Italic -+|Noto Serif Nerd Font Condensed Italic.ttf | | Noto Serif Nerd Font Condensed Italic |X| NotoSerif Nerd Font Cond | | Italic | | NotoSerif Nerd Font | | Condensed Italic --|Noto Serif Condensed Italic Nerd Font.ttf | | Noto Serif Condensed Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedLightItalic.ttf | | Noto Serif Condensed Light Italic | | Noto Serif Cond Light | | Italic | | Noto Serif | | Condensed Light Italic -+|Noto Serif Nerd Font Condensed Light Italic.ttf | | Noto Serif Nerd Font Condensed Light Italic |X| NotoSerif Nerd Font Cond Light | | Italic | | NotoSerif Nerd Font | | Condensed Light Italic --|Noto Serif Condensed Light Italic Nerd Font.ttf | | Noto Serif Condensed Light Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed Light Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedLight.ttf | | Noto Serif Condensed Light | | Noto Serif Cond Light | | Regular | | Noto Serif | | Condensed Light -+|Noto Serif Nerd Font Condensed Light.ttf | | Noto Serif Nerd Font Condensed Light |X| NotoSerif Nerd Font Cond Light | | Regular | | NotoSerif Nerd Font | | Condensed Light --|Noto Serif Condensed Light Nerd Font.ttf | | Noto Serif Condensed Light Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed Light -#### Add weight/style to family [1] ->|NotoSerif-CondensedMediumItalic.ttf | | Noto Serif Condensed Medium Italic | | Noto Serif Cond Med | | Italic | | Noto Serif | | Condensed Medium Italic -+|Noto Serif Nerd Font Condensed Medium Italic.ttf | | Noto Serif Nerd Font Condensed Medium Italic |X| NotoSerif Nerd Font Cond Med | | Italic | | NotoSerif Nerd Font | | Condensed Medium Italic --|Noto Serif Condensed Medium Italic Nerd Font.ttf | | Noto Serif Condensed Medium Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed Medium Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedMedium.ttf | | Noto Serif Condensed Medium | | Noto Serif Cond Med | | Regular | | Noto Serif | | Condensed Medium -+|Noto Serif Nerd Font Condensed Medium.ttf | | Noto Serif Nerd Font Condensed Medium |X| NotoSerif Nerd Font Cond Med | | Regular | | NotoSerif Nerd Font | | Condensed Medium --|Noto Serif Condensed Medium Nerd Font.ttf | | Noto Serif Condensed Medium Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed Medium -#### Add weight/style to family [1] ->|NotoSerif-CondensedSemiBoldItalic.ttf | | Noto Serif Condensed SemiBold Italic | | Noto Serif Cond SemBd | | Italic | | Noto Serif | | Condensed SemiBold Italic -+|Noto Serif Nerd Font Condensed SemiBold Italic.ttf | | Noto Serif Nerd Font Condensed SemiBold Italic |X| NotoSerif Nerd Font Cond SemBd | | Italic | | NotoSerif Nerd Font | | Condensed SemiBold Italic --|Noto Serif Condensed SemiBold Italic Nerd Font.ttf | | Noto Serif Condensed SemiBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedSemiBold.ttf | | Noto Serif Condensed SemiBold | | Noto Serif Cond SemBd | | Regular | | Noto Serif | | Condensed SemiBold -+|Noto Serif Nerd Font Condensed SemiBold.ttf | | Noto Serif Nerd Font Condensed SemiBold |X| NotoSerif Nerd Font Cond SemBd | | Regular | | NotoSerif Nerd Font | | Condensed SemiBold --|Noto Serif Condensed SemiBold Nerd Font.ttf | | Noto Serif Condensed SemiBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed SemiBold -#### Add weight/style to family [1] ->|NotoSerif-CondensedThinItalic.ttf | | Noto Serif Condensed Thin Italic | | Noto Serif Cond Thin | | Italic | | Noto Serif | | Condensed Thin Italic -+|Noto Serif Nerd Font Condensed Thin Italic.ttf | | Noto Serif Nerd Font Condensed Thin Italic |X| NotoSerif Nerd Font Cond Thin | | Italic | | NotoSerif Nerd Font | | Condensed Thin Italic --|Noto Serif Condensed Thin Italic Nerd Font.ttf | | Noto Serif Condensed Thin Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Condensed Thin Italic -#### Add weight/style to family [1] ->|NotoSerif-CondensedThin.ttf | | Noto Serif Condensed Thin | | Noto Serif Cond Thin | | Regular | | Noto Serif | | Condensed Thin -+|Noto Serif Nerd Font Condensed Thin.ttf | | Noto Serif Nerd Font Condensed Thin |X| NotoSerif Nerd Font Cond Thin | | Regular | | NotoSerif Nerd Font | | Condensed Thin --|Noto Serif Condensed Thin Nerd Font.ttf | | Noto Serif Condensed Thin Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed Thin -#### Add weight/style to family [1] ->|NotoSerif-Condensed.ttf | | Noto Serif Condensed | | Noto Serif Cond | | Regular | | Noto Serif | | Condensed -+|Noto Serif Nerd Font Condensed.ttf | | Noto Serif Nerd Font Condensed |X| NotoSerif Nerd Font Cond | | Regular | | NotoSerif Nerd Font | | Condensed --|Noto Serif Condensed Nerd Font.ttf | | Noto Serif Condensed Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Condensed -#### Add weight/style to family [1] ->|NotoSerif-ExtraBoldItalic.ttf | | Noto Serif ExtraBold Italic | | Noto Serif ExtBd | | Italic | | Noto Serif | | ExtraBold Italic -+|Noto Serif Nerd Font ExtraBold Italic.ttf | | Noto Serif Nerd Font ExtraBold Italic |X| NotoSerif Nerd Font ExtBd | | Italic | | NotoSerif Nerd Font | | ExtraBold Italic --|Noto Serif ExtraBold Italic Nerd Font.ttf | | Noto Serif ExtraBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraBold.ttf | | Noto Serif ExtraBold | | Noto Serif ExtBd | | Regular | | Noto Serif | | ExtraBold -+|Noto Serif Nerd Font ExtraBold.ttf | | Noto Serif Nerd Font ExtraBold |X| NotoSerif Nerd Font ExtBd | | Regular | | NotoSerif Nerd Font | | ExtraBold --|Noto Serif ExtraBold Nerd Font.ttf | | Noto Serif ExtraBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedBlackItalic.ttf | | Noto Serif ExtraCondensed Black Italic | | Noto Serif ExtCond Blk | | Italic | | Noto Serif | | ExtraCondensed Black Italic -+|Noto Serif Nerd Font ExtraCondensed Black Italic.t | | Noto Serif Nerd Font ExtraCondensed Black Italic |X| NotoSerif Nerd Font ExtCond Blk | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Black Italic --|Noto Serif ExtraCondensed Black Italic Nerd Font.t | | Noto Serif ExtraCondensed Black Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Black Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedBlack.ttf | | Noto Serif ExtraCondensed Black | | Noto Serif ExtCond Blk | | Regular | | Noto Serif | | ExtraCondensed Black -+|Noto Serif Nerd Font ExtraCondensed Black.ttf | | Noto Serif Nerd Font ExtraCondensed Black |X| NotoSerif Nerd Font ExtCond Blk | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Black --|Noto Serif ExtraCondensed Black Nerd Font.ttf | | Noto Serif ExtraCondensed Black Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Black -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedBoldItalic.ttf | | Noto Serif ExtraCondensed Bold Italic | | Noto Serif ExtCond | | Bold Italic | | Noto Serif | | ExtraCondensed Bold Italic -+|Noto Serif Nerd Font ExtraCondensed Bold Italic.tt | | Noto Serif Nerd Font ExtraCondensed Bold Italic |X| NotoSerif Nerd Font ExtCond | | Bold Italic | | NotoSerif Nerd Font | | ExtraCondensed Bold Italic --|Noto Serif ExtraCondensed Bold Italic Nerd Font.tt | | Noto Serif ExtraCondensed Bold Italic Nerd Font | | NotoSerif Nerd Font | | Bold Italic | | NotoSerif Nerd Font | | ExtraCondensed Bold Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedBold.ttf | | Noto Serif ExtraCondensed Bold | | Noto Serif ExtCond | | Bold | | Noto Serif | | ExtraCondensed Bold -+|Noto Serif Nerd Font ExtraCondensed Bold.ttf | | Noto Serif Nerd Font ExtraCondensed Bold |X| NotoSerif Nerd Font ExtCond | | Bold | | NotoSerif Nerd Font | | ExtraCondensed Bold --|Noto Serif ExtraCondensed Bold Nerd Font.ttf | | Noto Serif ExtraCondensed Bold Nerd Font | | NotoSerif Nerd Font | | Bold | | NotoSerif Nerd Font | | ExtraCondensed Bold -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedExtraBoldItalic.ttf | | Noto Serif ExtraCondensed ExtraBold Italic | | Noto Serif ExtCond ExtBd | | Italic | | Noto Serif | | ExtraCondensed ExtraBold Italic -+|Noto Serif Nerd Font ExtraCondensed ExtraBold Ital | | Noto Serif Nerd Font ExtraCondensed ExtraBold Italic |X| NotoSerif Nerd Font ExtCond ExtBd | | Italic | | NotoSerif Nerd Font | | ExtraCondensed ExtraBold Italic --|Noto Serif ExtraCondensed ExtraBold Italic Nerd Fo | | Noto Serif ExtraCondensed ExtraBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedExtraBold.ttf | | Noto Serif ExtraCondensed ExtraBold | | Noto Serif ExtCond ExtBd | | Regular | | Noto Serif | | ExtraCondensed ExtraBold -+|Noto Serif Nerd Font ExtraCondensed ExtraBold.ttf | | Noto Serif Nerd Font ExtraCondensed ExtraBold |X| NotoSerif Nerd Font ExtCond ExtBd | | Regular | | NotoSerif Nerd Font | | ExtraCondensed ExtraBold --|Noto Serif ExtraCondensed ExtraBold Nerd Font.ttf | | Noto Serif ExtraCondensed ExtraBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedExtraLightItalic.ttf | | Noto Serif ExtraCondensed ExtraLight Italic | | Noto Serif ExtCond ExtLt | | Italic | | Noto Serif | | ExtraCondensed ExtraLight Italic -+|Noto Serif Nerd Font ExtraCondensed ExtraLight Ita | | Noto Serif Nerd Font ExtraCondensed ExtraLight Italic |X| NotoSerif Nerd Font ExtCond ExtLt | | Italic | | NotoSerif Nerd Font | | ExtraCondensed ExtraLight Italic --|Noto Serif ExtraCondensed ExtraLight Italic Nerd F | | Noto Serif ExtraCondensed ExtraLight Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedExtraLight.ttf | | Noto Serif ExtraCondensed ExtraLight | | Noto Serif ExtCond ExtLt | | Regular | | Noto Serif | | ExtraCondensed ExtraLight -+|Noto Serif Nerd Font ExtraCondensed ExtraLight.ttf | | Noto Serif Nerd Font ExtraCondensed ExtraLight |X| NotoSerif Nerd Font ExtCond ExtLt | | Regular | | NotoSerif Nerd Font | | ExtraCondensed ExtraLight --|Noto Serif ExtraCondensed ExtraLight Nerd Font.ttf | | Noto Serif ExtraCondensed ExtraLight Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedItalic.ttf | | Noto Serif ExtraCondensed Italic | | Noto Serif ExtCond | | Italic | | Noto Serif | | ExtraCondensed Italic -+|Noto Serif Nerd Font ExtraCondensed Italic.ttf | | Noto Serif Nerd Font ExtraCondensed Italic |X| NotoSerif Nerd Font ExtCond | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Italic --|Noto Serif ExtraCondensed Italic Nerd Font.ttf | | Noto Serif ExtraCondensed Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedLightItalic.ttf | | Noto Serif ExtraCondensed Light Italic | | Noto Serif ExtCond Light | | Italic | | Noto Serif | | ExtraCondensed Light Italic -+|Noto Serif Nerd Font ExtraCondensed Light Italic.t | | Noto Serif Nerd Font ExtraCondensed Light Italic |X| NotoSerif Nerd Font ExtCond Light | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Light Italic --|Noto Serif ExtraCondensed Light Italic Nerd Font.t | | Noto Serif ExtraCondensed Light Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Light Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedLight.ttf | | Noto Serif ExtraCondensed Light | | Noto Serif ExtCond Light | | Regular | | Noto Serif | | ExtraCondensed Light -+|Noto Serif Nerd Font ExtraCondensed Light.ttf | | Noto Serif Nerd Font ExtraCondensed Light |X| NotoSerif Nerd Font ExtCond Light | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Light --|Noto Serif ExtraCondensed Light Nerd Font.ttf | | Noto Serif ExtraCondensed Light Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Light -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedMediumItalic.ttf | | Noto Serif ExtraCondensed Medium Italic | | Noto Serif ExtCond Med | | Italic | | Noto Serif | | ExtraCondensed Medium Italic -+|Noto Serif Nerd Font ExtraCondensed Medium Italic. | | Noto Serif Nerd Font ExtraCondensed Medium Italic |X| NotoSerif Nerd Font ExtCond Med | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Medium Italic --|Noto Serif ExtraCondensed Medium Italic Nerd Font. | | Noto Serif ExtraCondensed Medium Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Medium Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedMedium.ttf | | Noto Serif ExtraCondensed Medium | | Noto Serif ExtCond Med | | Regular | | Noto Serif | | ExtraCondensed Medium -+|Noto Serif Nerd Font ExtraCondensed Medium.ttf | | Noto Serif Nerd Font ExtraCondensed Medium |X| NotoSerif Nerd Font ExtCond Med | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Medium --|Noto Serif ExtraCondensed Medium Nerd Font.ttf | | Noto Serif ExtraCondensed Medium Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Medium -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedSemiBoldItalic.ttf | | Noto Serif ExtraCondensed SemiBold Italic | | Noto Serif ExtCond SemBd | | Italic | | Noto Serif | | ExtraCondensed SemiBold Italic -+|Noto Serif Nerd Font ExtraCondensed SemiBold Itali | | Noto Serif Nerd Font ExtraCondensed SemiBold Italic |X| NotoSerif Nerd Font ExtCond SemBd | | Italic | | NotoSerif Nerd Font | | ExtraCondensed SemiBold Italic --|Noto Serif ExtraCondensed SemiBold Italic Nerd Fon | | Noto Serif ExtraCondensed SemiBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedSemiBold.ttf | | Noto Serif ExtraCondensed SemiBold | | Noto Serif ExtCond SemBd | | Regular | | Noto Serif | | ExtraCondensed SemiBold -+|Noto Serif Nerd Font ExtraCondensed SemiBold.ttf | | Noto Serif Nerd Font ExtraCondensed SemiBold |X| NotoSerif Nerd Font ExtCond SemBd | | Regular | | NotoSerif Nerd Font | | ExtraCondensed SemiBold --|Noto Serif ExtraCondensed SemiBold Nerd Font.ttf | | Noto Serif ExtraCondensed SemiBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedThinItalic.ttf | | Noto Serif ExtraCondensed Thin Italic | | Noto Serif ExtCond Thin | | Italic | | Noto Serif | | ExtraCondensed Thin Italic -+|Noto Serif Nerd Font ExtraCondensed Thin Italic.tt | | Noto Serif Nerd Font ExtraCondensed Thin Italic |X| NotoSerif Nerd Font ExtCond Thin | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Thin Italic --|Noto Serif ExtraCondensed Thin Italic Nerd Font.tt | | Noto Serif ExtraCondensed Thin Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraCondensed Thin Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensedThin.ttf | | Noto Serif ExtraCondensed Thin | | Noto Serif ExtCond Thin | | Regular | | Noto Serif | | ExtraCondensed Thin -+|Noto Serif Nerd Font ExtraCondensed Thin.ttf | | Noto Serif Nerd Font ExtraCondensed Thin |X| NotoSerif Nerd Font ExtCond Thin | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Thin --|Noto Serif ExtraCondensed Thin Nerd Font.ttf | | Noto Serif ExtraCondensed Thin Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed Thin -#### Add weight/style to family [1] ->|NotoSerif-ExtraCondensed.ttf | | Noto Serif ExtraCondensed | | Noto Serif ExtCond | | Regular | | Noto Serif | | ExtraCondensed -+|Noto Serif Nerd Font ExtraCondensed.ttf | | Noto Serif Nerd Font ExtraCondensed |X| NotoSerif Nerd Font ExtCond | | Regular | | NotoSerif Nerd Font | | ExtraCondensed --|Noto Serif ExtraCondensed Nerd Font.ttf | | Noto Serif ExtraCondensed Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraCondensed -#### Add weight/style to family [1] ->|NotoSerif-ExtraLightItalic.ttf | | Noto Serif ExtraLight Italic | | Noto Serif ExtLt | | Italic | | Noto Serif | | ExtraLight Italic -+|Noto Serif Nerd Font ExtraLight Italic.ttf | | Noto Serif Nerd Font ExtraLight Italic |X| NotoSerif Nerd Font ExtLt | | Italic | | NotoSerif Nerd Font | | ExtraLight Italic --|Noto Serif ExtraLight Italic Nerd Font.ttf | | Noto Serif ExtraLight Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSerif-ExtraLight.ttf | | Noto Serif ExtraLight | | Noto Serif ExtLt | | Regular | | Noto Serif | | ExtraLight -+|Noto Serif Nerd Font ExtraLight.ttf | | Noto Serif Nerd Font ExtraLight |X| NotoSerif Nerd Font ExtLt | | Regular | | NotoSerif Nerd Font | | ExtraLight --|Noto Serif ExtraLight Nerd Font.ttf | | Noto Serif ExtraLight Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|NotoSerif-LightItalic.ttf | | Noto Serif Light Italic | | Noto Serif Light | | Italic | | Noto Serif | | Light Italic -+|Noto Serif Nerd Font Light Italic.ttf | | Noto Serif Nerd Font Light Italic |X| NotoSerif Nerd Font Light | | Italic | | NotoSerif Nerd Font | | Light Italic --|Noto Serif Light Italic Nerd Font.ttf | | Noto Serif Light Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|NotoSerif-Light.ttf | | Noto Serif Light | | Noto Serif Light | | Regular | | Noto Serif | | Light -+|Noto Serif Nerd Font Light.ttf | | Noto Serif Nerd Font Light |X| NotoSerif Nerd Font Light | | Regular | | NotoSerif Nerd Font | | Light --|Noto Serif Light Nerd Font.ttf | | Noto Serif Light Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Light -#### Add weight/style to family [1] ->|NotoSerif-MediumItalic.ttf | | Noto Serif Medium Italic | | Noto Serif Med | | Italic | | Noto Serif | | Medium Italic -+|Noto Serif Nerd Font Medium Italic.ttf | | Noto Serif Nerd Font Medium Italic |X| NotoSerif Nerd Font Med | | Italic | | NotoSerif Nerd Font | | Medium Italic --|Noto Serif Medium Italic Nerd Font.ttf | | Noto Serif Medium Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|NotoSerif-Medium.ttf | | Noto Serif Medium | | Noto Serif Med | | Regular | | Noto Serif | | Medium -+|Noto Serif Nerd Font Medium.ttf | | Noto Serif Nerd Font Medium |X| NotoSerif Nerd Font Med | | Regular | | NotoSerif Nerd Font | | Medium --|Noto Serif Medium Nerd Font.ttf | | Noto Serif Medium Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Medium -#### Add weight/style to family [1] ->|NotoSerif-SemiBoldItalic.ttf | | Noto Serif SemiBold Italic | | Noto Serif SemBd | | Italic | | Noto Serif | | SemiBold Italic -+|Noto Serif Nerd Font SemiBold Italic.ttf | | Noto Serif Nerd Font SemiBold Italic |X| NotoSerif Nerd Font SemBd | | Italic | | NotoSerif Nerd Font | | SemiBold Italic --|Noto Serif SemiBold Italic Nerd Font.ttf | | Noto Serif SemiBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiBold.ttf | | Noto Serif SemiBold | | Noto Serif SemBd | | Regular | | Noto Serif | | SemiBold -+|Noto Serif Nerd Font SemiBold.ttf | | Noto Serif Nerd Font SemiBold |X| NotoSerif Nerd Font SemBd | | Regular | | NotoSerif Nerd Font | | SemiBold --|Noto Serif SemiBold Nerd Font.ttf | | Noto Serif SemiBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedBlackItalic.ttf | | Noto Serif SemiCondensed Black Italic | | Noto Serif SemCond Blk | | Italic | | Noto Serif | | SemiCondensed Black Italic -+|Noto Serif Nerd Font SemiCondensed Black Italic.tt | | Noto Serif Nerd Font SemiCondensed Black Italic |X| NotoSerif Nerd Font SemCond Blk | | Italic | | NotoSerif Nerd Font | | SemiCondensed Black Italic --|Noto Serif SemiCondensed Black Italic Nerd Font.tt | | Noto Serif SemiCondensed Black Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed Black Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedBlack.ttf | | Noto Serif SemiCondensed Black | | Noto Serif SemCond Blk | | Regular | | Noto Serif | | SemiCondensed Black -+|Noto Serif Nerd Font SemiCondensed Black.ttf | | Noto Serif Nerd Font SemiCondensed Black |X| NotoSerif Nerd Font SemCond Blk | | Regular | | NotoSerif Nerd Font | | SemiCondensed Black --|Noto Serif SemiCondensed Black Nerd Font.ttf | | Noto Serif SemiCondensed Black Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed Black -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedBoldItalic.ttf | | Noto Serif SemiCondensed Bold Italic | | Noto Serif SemCond | | Bold Italic | | Noto Serif | | SemiCondensed Bold Italic -+|Noto Serif Nerd Font SemiCondensed Bold Italic.ttf | | Noto Serif Nerd Font SemiCondensed Bold Italic |X| NotoSerif Nerd Font SemCond | | Bold Italic | | NotoSerif Nerd Font | | SemiCondensed Bold Italic --|Noto Serif SemiCondensed Bold Italic Nerd Font.ttf | | Noto Serif SemiCondensed Bold Italic Nerd Font | | NotoSerif Nerd Font | | Bold Italic | | NotoSerif Nerd Font | | SemiCondensed Bold Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedBold.ttf | | Noto Serif SemiCondensed Bold | | Noto Serif SemCond | | Bold | | Noto Serif | | SemiCondensed Bold -+|Noto Serif Nerd Font SemiCondensed Bold.ttf | | Noto Serif Nerd Font SemiCondensed Bold |X| NotoSerif Nerd Font SemCond | | Bold | | NotoSerif Nerd Font | | SemiCondensed Bold --|Noto Serif SemiCondensed Bold Nerd Font.ttf | | Noto Serif SemiCondensed Bold Nerd Font | | NotoSerif Nerd Font | | Bold | | NotoSerif Nerd Font | | SemiCondensed Bold -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedExtraBoldItalic.ttf | | Noto Serif SemiCondensed ExtraBold Italic | | Noto Serif SemCond ExtBd | | Italic | | Noto Serif | | SemiCondensed ExtraBold Italic -+|Noto Serif Nerd Font SemiCondensed ExtraBold Itali | | Noto Serif Nerd Font SemiCondensed ExtraBold Italic |X| NotoSerif Nerd Font SemCond ExtBd | | Italic | | NotoSerif Nerd Font | | SemiCondensed ExtraBold Italic --|Noto Serif SemiCondensed ExtraBold Italic Nerd Fon | | Noto Serif SemiCondensed ExtraBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed ExtraBold Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedExtraBold.ttf | | Noto Serif SemiCondensed ExtraBold | | Noto Serif SemCond ExtBd | | Regular | | Noto Serif | | SemiCondensed ExtraBold -+|Noto Serif Nerd Font SemiCondensed ExtraBold.ttf | | Noto Serif Nerd Font SemiCondensed ExtraBold |X| NotoSerif Nerd Font SemCond ExtBd | | Regular | | NotoSerif Nerd Font | | SemiCondensed ExtraBold --|Noto Serif SemiCondensed ExtraBold Nerd Font.ttf | | Noto Serif SemiCondensed ExtraBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed ExtraBold -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedExtraLightItalic.ttf | | Noto Serif SemiCondensed ExtraLight Italic | | Noto Serif SemCond ExtLt | | Italic | | Noto Serif | | SemiCondensed ExtraLight Italic -+|Noto Serif Nerd Font SemiCondensed ExtraLight Ital | | Noto Serif Nerd Font SemiCondensed ExtraLight Italic |X| NotoSerif Nerd Font SemCond ExtLt | | Italic | | NotoSerif Nerd Font | | SemiCondensed ExtraLight Italic --|Noto Serif SemiCondensed ExtraLight Italic Nerd Fo | | Noto Serif SemiCondensed ExtraLight Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed ExtraLight Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedExtraLight.ttf | | Noto Serif SemiCondensed ExtraLight | | Noto Serif SemCond ExtLt | | Regular | | Noto Serif | | SemiCondensed ExtraLight -+|Noto Serif Nerd Font SemiCondensed ExtraLight.ttf | | Noto Serif Nerd Font SemiCondensed ExtraLight |X| NotoSerif Nerd Font SemCond ExtLt | | Regular | | NotoSerif Nerd Font | | SemiCondensed ExtraLight --|Noto Serif SemiCondensed ExtraLight Nerd Font.ttf | | Noto Serif SemiCondensed ExtraLight Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed ExtraLight -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedItalic.ttf | | Noto Serif SemiCondensed Italic | | Noto Serif SemCond | | Italic | | Noto Serif | | SemiCondensed Italic -+|Noto Serif Nerd Font SemiCondensed Italic.ttf | | Noto Serif Nerd Font SemiCondensed Italic |X| NotoSerif Nerd Font SemCond | | Italic | | NotoSerif Nerd Font | | SemiCondensed Italic --|Noto Serif SemiCondensed Italic Nerd Font.ttf | | Noto Serif SemiCondensed Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedLightItalic.ttf | | Noto Serif SemiCondensed Light Italic | | Noto Serif SemCond Light | | Italic | | Noto Serif | | SemiCondensed Light Italic -+|Noto Serif Nerd Font SemiCondensed Light Italic.tt | | Noto Serif Nerd Font SemiCondensed Light Italic |X| NotoSerif Nerd Font SemCond Light | | Italic | | NotoSerif Nerd Font | | SemiCondensed Light Italic --|Noto Serif SemiCondensed Light Italic Nerd Font.tt | | Noto Serif SemiCondensed Light Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed Light Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedLight.ttf | | Noto Serif SemiCondensed Light | | Noto Serif SemCond Light | | Regular | | Noto Serif | | SemiCondensed Light -+|Noto Serif Nerd Font SemiCondensed Light.ttf | | Noto Serif Nerd Font SemiCondensed Light |X| NotoSerif Nerd Font SemCond Light | | Regular | | NotoSerif Nerd Font | | SemiCondensed Light --|Noto Serif SemiCondensed Light Nerd Font.ttf | | Noto Serif SemiCondensed Light Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed Light -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedMediumItalic.ttf | | Noto Serif SemiCondensed Medium Italic | | Noto Serif SemCond Med | | Italic | | Noto Serif | | SemiCondensed Medium Italic -+|Noto Serif Nerd Font SemiCondensed Medium Italic.t | | Noto Serif Nerd Font SemiCondensed Medium Italic |X| NotoSerif Nerd Font SemCond Med | | Italic | | NotoSerif Nerd Font | | SemiCondensed Medium Italic --|Noto Serif SemiCondensed Medium Italic Nerd Font.t | | Noto Serif SemiCondensed Medium Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed Medium Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedMedium.ttf | | Noto Serif SemiCondensed Medium | | Noto Serif SemCond Med | | Regular | | Noto Serif | | SemiCondensed Medium -+|Noto Serif Nerd Font SemiCondensed Medium.ttf | | Noto Serif Nerd Font SemiCondensed Medium |X| NotoSerif Nerd Font SemCond Med | | Regular | | NotoSerif Nerd Font | | SemiCondensed Medium --|Noto Serif SemiCondensed Medium Nerd Font.ttf | | Noto Serif SemiCondensed Medium Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed Medium -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedSemiBoldItalic.ttf | | Noto Serif SemiCondensed SemiBold Italic | | Noto Serif SemCond SemBd | | Italic | | Noto Serif | | SemiCondensed SemiBold Italic -+|Noto Serif Nerd Font SemiCondensed SemiBold Italic | | Noto Serif Nerd Font SemiCondensed SemiBold Italic |X| NotoSerif Nerd Font SemCond SemBd | | Italic | | NotoSerif Nerd Font | | SemiCondensed SemiBold Italic --|Noto Serif SemiCondensed SemiBold Italic Nerd Font | | Noto Serif SemiCondensed SemiBold Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed SemiBold Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedSemiBold.ttf | | Noto Serif SemiCondensed SemiBold | | Noto Serif SemCond SemBd | | Regular | | Noto Serif | | SemiCondensed SemiBold -+|Noto Serif Nerd Font SemiCondensed SemiBold.ttf | | Noto Serif Nerd Font SemiCondensed SemiBold |X| NotoSerif Nerd Font SemCond SemBd | | Regular | | NotoSerif Nerd Font | | SemiCondensed SemiBold --|Noto Serif SemiCondensed SemiBold Nerd Font.ttf | | Noto Serif SemiCondensed SemiBold Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed SemiBold -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedThinItalic.ttf | | Noto Serif SemiCondensed Thin Italic | | Noto Serif SemCond Thin | | Italic | | Noto Serif | | SemiCondensed Thin Italic -+|Noto Serif Nerd Font SemiCondensed Thin Italic.ttf | | Noto Serif Nerd Font SemiCondensed Thin Italic |X| NotoSerif Nerd Font SemCond Thin | | Italic | | NotoSerif Nerd Font | | SemiCondensed Thin Italic --|Noto Serif SemiCondensed Thin Italic Nerd Font.ttf | | Noto Serif SemiCondensed Thin Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | SemiCondensed Thin Italic -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensedThin.ttf | | Noto Serif SemiCondensed Thin | | Noto Serif SemCond Thin | | Regular | | Noto Serif | | SemiCondensed Thin -+|Noto Serif Nerd Font SemiCondensed Thin.ttf | | Noto Serif Nerd Font SemiCondensed Thin |X| NotoSerif Nerd Font SemCond Thin | | Regular | | NotoSerif Nerd Font | | SemiCondensed Thin --|Noto Serif SemiCondensed Thin Nerd Font.ttf | | Noto Serif SemiCondensed Thin Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed Thin -#### Add weight/style to family [1] ->|NotoSerif-SemiCondensed.ttf | | Noto Serif SemiCondensed | | Noto Serif SemCond | | Regular | | Noto Serif | | SemiCondensed -+|Noto Serif Nerd Font SemiCondensed.ttf | | Noto Serif Nerd Font SemiCondensed |X| NotoSerif Nerd Font SemCond | | Regular | | NotoSerif Nerd Font | | SemiCondensed --|Noto Serif SemiCondensed Nerd Font.ttf | | Noto Serif SemiCondensed Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | SemiCondensed -#### Add weight/style to family [1] ->|NotoSerif-ThinItalic.ttf | | Noto Serif Thin Italic | | Noto Serif Thin | | Italic | | Noto Serif | | Thin Italic -+|Noto Serif Nerd Font Thin Italic.ttf | | Noto Serif Nerd Font Thin Italic |X| NotoSerif Nerd Font Thin | | Italic | | NotoSerif Nerd Font | | Thin Italic --|Noto Serif Thin Italic Nerd Font.ttf | | Noto Serif Thin Italic Nerd Font | | NotoSerif Nerd Font | | Italic | | NotoSerif Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|NotoSerif-Thin.ttf | | Noto Serif Thin | | Noto Serif Thin | | Regular | | Noto Serif | | Thin -+|Noto Serif Nerd Font Thin.ttf | | Noto Serif Nerd Font Thin |X| NotoSerif Nerd Font Thin | | Regular | | NotoSerif Nerd Font | | Thin --|Noto Serif Thin Nerd Font.ttf | | Noto Serif Thin Nerd Font | | NotoSerif Nerd Font | | Regular | | NotoSerif Nerd Font | | Thin -#### Fullname has been missing 'Nerd Font' [7] ->|OpenDyslexicAlta-Regular.otf | | OpenDyslexicAlta | | OpenDyslexicAlta | | Regular | | | | -+|OpenDyslexicAlta Nerd Font.otf |X| OpenDyslexicAlta Nerd Font | | OpenDyslexicAlta Nerd Font | | Regular | | | | --|OpenDyslexicAlta Regular Nerd Font.otf | | OpenDyslexicAlta | | OpenDyslexicAlta Nerd Font | | Regular | | OpenDyslexicAlta Nerd Font | | -#### Fullname has been missing 'Nerd Font' [7] ->|OpenDyslexicMono-Regular.otf | | OpenDyslexicMono | | OpenDyslexicMono | | Regular | | | | -+|OpenDyslexicMono Nerd Font.otf |X| OpenDyslexicMono Nerd Font | | OpenDyslexicMono Nerd Font | | Regular | | | | --|OpenDyslexicMono Regular Nerd Font.otf | | OpenDyslexicMono | | OpenDyslexicMono Nerd Font | | Regular | | OpenDyslexicMono Nerd Font | | -#### Fullname has been missing 'Nerd Font' [7] ->|OpenDyslexic-Regular.otf | | OpenDyslexic | | OpenDyslexic | | Regular | | | | -+|OpenDyslexic Nerd Font.otf |X| OpenDyslexic Nerd Font | | OpenDyslexic Nerd Font | | Regular | | | | --|OpenDyslexic Regular Nerd Font.otf | | OpenDyslexic | | OpenDyslexic Nerd Font | | Regular | | OpenDyslexic Nerd Font | | -#### Add weight/style to family [1] ->|overpass-mono-light.otf | | Overpass Mono Light | | Overpass Mono Light | | Regular | | Overpass Mono | | Light -+|Overpass Mono Nerd Font Light.otf | | Overpass Mono Nerd Font Light |X| OverpassMono Nerd Font Light | | Regular | | OverpassMono Nerd Font | | Light --|Overpass Mono Light Nerd Font.otf | | Overpass Mono Light Nerd Font | | OverpassMono Nerd Font | | Regular | | OverpassMono Nerd Font | | Light -#### Add weight/style to family [1] ->|overpass-mono-semibold.otf | | Overpass Mono SemiBold | | Overpass Mono Light | | Bold | | Overpass Mono | | SemiBold -+|Overpass Mono Nerd Font SemiBold.otf | | Overpass Mono Nerd Font SemiBold |X| OverpassMono Nerd Font SemiBold |X| Regular | | OverpassMono Nerd Font | | SemiBold --|Overpass Mono SemiBold Nerd Font.otf | | Overpass Mono SemiBold Nerd Font | | OverpassMono Nerd Font | | Bold | | OverpassMono Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|overpass-extrabold-italic.otf | | Overpass ExtraBold Italic | | Overpass ExtraBold | | Italic | | Overpass | | ExtraBold Italic -+|Overpass Nerd Font ExtraBold Italic.otf | | Overpass Nerd Font ExtraBold Italic |X| Overpass Nerd Font ExtraBold | | Italic | | Overpass Nerd Font | | ExtraBold Italic --|Overpass ExtraBold Italic Nerd Font.otf | | Overpass ExtraBold Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | ExtraBold Italic -#### Add weight/style to family [1] ->|overpass-extrabold.otf | | Overpass ExtraBold | | Overpass ExtraBold | | Regular | | Overpass | | ExtraBold -+|Overpass Nerd Font ExtraBold.otf | | Overpass Nerd Font ExtraBold |X| Overpass Nerd Font ExtraBold | | Regular | | Overpass Nerd Font | | ExtraBold --|Overpass ExtraBold Nerd Font.otf | | Overpass ExtraBold Nerd Font | | Overpass Nerd Font | | Regular | | Overpass Nerd Font | | ExtraBold -#### Add weight/style to family [1] ->|overpass-extralight-italic.otf | | Overpass ExtraLight Italic | | Overpass ExtraLight | | Italic | | Overpass | | ExtraLight Italic -+|Overpass Nerd Font ExtraLight Italic.otf | | Overpass Nerd Font ExtraLight Italic |X| Overpass Nerd Font ExtraLight | | Italic | | Overpass Nerd Font | | ExtraLight Italic --|Overpass ExtraLight Italic Nerd Font.otf | | Overpass ExtraLight Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|overpass-extralight.otf | | Overpass ExtraLight | | Overpass ExtraLight | | Regular | | Overpass | | ExtraLight -+|Overpass Nerd Font ExtraLight.otf | | Overpass Nerd Font ExtraLight |X| Overpass Nerd Font ExtraLight | | Regular | | Overpass Nerd Font | | ExtraLight --|Overpass ExtraLight Nerd Font.otf | | Overpass ExtraLight Nerd Font | | Overpass Nerd Font | | Regular | | Overpass Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|overpass-heavy-italic.otf | | Overpass Heavy Italic | | Overpass Heavy | | Italic | | Overpass | | Heavy Italic -+|Overpass Nerd Font Heavy Italic.otf | | Overpass Nerd Font Heavy Italic |X| Overpass Nerd Font Heavy | | Italic | | Overpass Nerd Font | | Heavy Italic --|Overpass Heavy Italic Nerd Font.otf | | Overpass Heavy Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | Heavy Italic -#### Add weight/style to family [1] ->|overpass-heavy.otf | | Overpass Heavy | | Overpass Heavy | | Regular | | Overpass | | Heavy -+|Overpass Nerd Font Heavy.otf | | Overpass Nerd Font Heavy |X| Overpass Nerd Font Heavy | | Regular | | Overpass Nerd Font | | Heavy --|Overpass Heavy Nerd Font.otf | | Overpass Heavy Nerd Font | | Overpass Nerd Font | | Regular | | Overpass Nerd Font | | Heavy -#### Add weight/style to family [1] ->|overpass-light-italic.otf | | Overpass Light Italic | | Overpass Light | | Italic | | Overpass | | Light Italic -+|Overpass Nerd Font Light Italic.otf | | Overpass Nerd Font Light Italic |X| Overpass Nerd Font Light | | Italic | | Overpass Nerd Font | | Light Italic --|Overpass Light Italic Nerd Font.otf | | Overpass Light Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|overpass-light.otf | | Overpass Light | | Overpass Light | | Regular | | Overpass | | Light -+|Overpass Nerd Font Light.otf | | Overpass Nerd Font Light |X| Overpass Nerd Font Light | | Regular | | Overpass Nerd Font | | Light --|Overpass Light Nerd Font.otf | | Overpass Light Nerd Font | | Overpass Nerd Font | | Regular | | Overpass Nerd Font | | Light -#### Add weight/style to family [1] ->|overpass-semibold-italic.otf | | Overpass SemiBold Italic | | Overpass SemiBold | | Italic | | Overpass | | SemiBold Italic -+|Overpass Nerd Font SemiBold Italic.otf | | Overpass Nerd Font SemiBold Italic |X| Overpass Nerd Font SemiBold | | Italic | | Overpass Nerd Font | | SemiBold Italic --|Overpass SemiBold Italic Nerd Font.otf | | Overpass SemiBold Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] Do not call Semibold Light-Bold [6] ->|overpass-semibold.otf | | Overpass SemiBold | | Overpass Light | | Bold | | Overpass | | SemiBold -+|Overpass Nerd Font SemiBold.otf | | Overpass Nerd Font SemiBold |X| Overpass Nerd Font SemiBold |X| Regular | | Overpass Nerd Font | | SemiBold --|Overpass SemiBold Nerd Font.otf | | Overpass SemiBold Nerd Font | | Overpass Nerd Font | | Bold | | Overpass Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|overpass-thin-italic.otf | | Overpass Thin Italic | | Overpass Thin | | Italic | | Overpass | | Thin Italic -+|Overpass Nerd Font Thin Italic.otf | | Overpass Nerd Font Thin Italic |X| Overpass Nerd Font Thin | | Italic | | Overpass Nerd Font | | Thin Italic --|Overpass Thin Italic Nerd Font.otf | | Overpass Thin Italic Nerd Font | | Overpass Nerd Font | | Italic | | Overpass Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|overpass-thin.otf | | Overpass Thin | | Overpass Thin | | Regular | | Overpass | | Thin -+|Overpass Nerd Font Thin.otf | | Overpass Nerd Font Thin |X| Overpass Nerd Font Thin | | Regular | | Overpass Nerd Font | | Thin --|Overpass Thin Nerd Font.otf | | Overpass Thin Nerd Font | | Overpass Nerd Font | | Regular | | Overpass Nerd Font | | Thin -#### Change regular-equivalent name to Regular [4] ->|ProFontIIx.ttf | | ProFont IIx | | ProFontIIx | | Regular | | | | -+|ProFont IIx Nerd Font.ttf | | ProFont IIx Nerd Font |X| ProFont IIx Nerd Font |X| Regular |X| | | --|ProFont IIx Nerd Font.ttf | | ProFont IIx Nerd Font | | ProFontIIx Nerd Font | | Book | | ProFontIIx Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|ProFontWindows.ttf | | ProFontWindows | | ProFontWindows | | Regular | | | | -+|ProFontWindows Nerd Font.ttf | | ProFontWindows Nerd Font | | ProFontWindows Nerd Font |X| Regular | | | | --|ProFontWindows Nerd Font.ttf | | ProFontWindows Nerd Font | | ProFontWindows Nerd Font | | Book | | ProFontWindows Nerd Font | | -#### Add weight/style to family [1] Drop unneeded Typogr.Family/Typogr.Style [5] ->|ProggyCleanCE.ttf | | ProggyCleanTT CE | | ProggyCleanTT CE | | Regular | | | | -+|ProggyClean TT CE Nerd Font.ttf |X| ProggyClean TT CE Nerd Font |X| ProggyCleanTT CE Nerd Font | | Regular |X| | | --|ProggyCleanTT CE Nerd Font.ttf | | ProggyCleanTT CE | | ProggyCleanTT CE | | Regular | | ProggyCleanTTCE Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|ProggyClean.ttf | | ProggyCleanTT | | ProggyCleanTT | | Regular | | | | -+|ProggyClean TT Nerd Font.ttf | | ProggyClean TT Nerd Font | | ProggyCleanTT Nerd Font |X| Regular | | | | --|ProggyCleanTT Nerd Font.ttf | | ProggyCleanTT Nerd Font | | ProggyCleanTT Nerd Font | | Book | | ProggyCleanTT Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|ProggyCleanSZ.ttf | | ProggyCleanTTSZ | | ProggyCleanTTSZ | | Regular | | | | -+|ProggyClean TTSZ Nerd Font.ttf | | ProggyClean TTSZ Nerd Font | | ProggyCleanTTSZ Nerd Font |X| Regular | | | | --|ProggyCleanTTSZ Nerd Font.ttf | | ProggyCleanTTSZ Nerd Font | | ProggyCleanTTSZ Nerd Font | | Book | | ProggyCleanTTSZ Nerd Font | | -#### Add weight/style to family [1] ->|RobotoMono-LightItalic.ttf | | Roboto Mono Light Italic | | Roboto Mono Light | | Italic | | Roboto Mono | | Light Italic -+|Roboto Mono Nerd Font Light Italic.ttf | | Roboto Mono Nerd Font Light Italic |X| RobotoMono Nerd Font Light | | Italic | | RobotoMono Nerd Font | | Light Italic --|Roboto Mono Light Italic Nerd Font.ttf | | Roboto Mono Light Italic Nerd Font | | RobotoMono Nerd Font | | Italic | | RobotoMono Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|RobotoMono-Light.ttf | | Roboto Mono Light | | Roboto Mono Light | | Regular | | Roboto Mono | | Light -+|Roboto Mono Nerd Font Light.ttf | | Roboto Mono Nerd Font Light |X| RobotoMono Nerd Font Light | | Regular | | RobotoMono Nerd Font | | Light --|Roboto Mono Light Nerd Font.ttf | | Roboto Mono Light Nerd Font | | RobotoMono Nerd Font | | Regular | | RobotoMono Nerd Font | | Light -#### Add weight/style to family [1] ->|RobotoMono-MediumItalic.ttf | | Roboto Mono Medium Italic | | Roboto Mono Medium | | Italic | | Roboto Mono | | Medium Italic -+|Roboto Mono Nerd Font Medium Italic.ttf | | Roboto Mono Nerd Font Medium Italic |X| RobotoMono Nerd Font Medium | | Italic | | RobotoMono Nerd Font | | Medium Italic --|Roboto Mono Medium Italic Nerd Font.ttf | | Roboto Mono Medium Italic Nerd Font | | RobotoMono Nerd Font | | Italic | | RobotoMono Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|RobotoMono-Medium.ttf | | Roboto Mono Medium | | Roboto Mono Medium | | Regular | | Roboto Mono | | Medium -+|Roboto Mono Nerd Font Medium.ttf | | Roboto Mono Nerd Font Medium |X| RobotoMono Nerd Font Medium | | Regular | | RobotoMono Nerd Font | | Medium --|Roboto Mono Medium Nerd Font.ttf | | Roboto Mono Medium Nerd Font | | RobotoMono Nerd Font | | Regular | | RobotoMono Nerd Font | | Medium -#### Add weight/style to family [1] ->|RobotoMono-ThinItalic.ttf | | Roboto Mono Thin Italic | | Roboto Mono Thin | | Italic | | Roboto Mono | | Thin Italic -+|Roboto Mono Nerd Font Thin Italic.ttf | | Roboto Mono Nerd Font Thin Italic |X| RobotoMono Nerd Font Thin | | Italic | | RobotoMono Nerd Font | | Thin Italic --|Roboto Mono Thin Italic Nerd Font.ttf | | Roboto Mono Thin Italic Nerd Font | | RobotoMono Nerd Font | | Italic | | RobotoMono Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|RobotoMono-Thin.ttf | | Roboto Mono Thin | | Roboto Mono Thin | | Regular | | Roboto Mono | | Thin -+|Roboto Mono Nerd Font Thin.ttf | | Roboto Mono Nerd Font Thin |X| RobotoMono Nerd Font Thin | | Regular | | RobotoMono Nerd Font | | Thin --|Roboto Mono Thin Nerd Font.ttf | | Roboto Mono Thin Nerd Font | | RobotoMono Nerd Font | | Regular | | RobotoMono Nerd Font | | Thin -#### Add weight/style to family [1] ->|SourceCodePro-BlackIt.ttf | | Source Code Pro Black Italic | | Source Code Pro Black | | Italic | | Source Code Pro | | Black Italic -+|Sauce Code Pro Nerd Font Black Italic.ttf | | Sauce Code Pro Nerd Font Black Italic |X| SauceCodePro Nerd Font Black | | Italic | | SauceCodePro Nerd Font | | Black Italic --|Sauce Code Pro Black Italic Nerd Font.ttf | | Sauce Code Pro Black Italic Nerd Font | | SauceCodePro Nerd Font | | Italic | | SauceCodePro Nerd Font | | Black Italic -#### Add weight/style to family [1] ->|SourceCodePro-Black.ttf | | Source Code Pro Black | | Source Code Pro Black | | Regular | | Source Code Pro | | Black -+|Sauce Code Pro Nerd Font Black.ttf | | Sauce Code Pro Nerd Font Black |X| SauceCodePro Nerd Font Black | | Regular | | SauceCodePro Nerd Font | | Black --|Sauce Code Pro Black Nerd Font.ttf | | Sauce Code Pro Black Nerd Font | | SauceCodePro Nerd Font | | Regular | | SauceCodePro Nerd Font | | Black -#### Add weight/style to family [1] ->|SourceCodePro-ExtraLightIt.ttf | | Source Code Pro ExtraLight Italic | | Source Code Pro ExtraLight | | Italic | | Source Code Pro | | ExtraLight Italic -+|Sauce Code Pro Nerd Font ExtraLight Italic.ttf | | Sauce Code Pro Nerd Font ExtraLight Italic |X| SauceCodePro Nerd Font ExtraLight | | Italic | | SauceCodePro Nerd Font | | ExtraLight Italic --|Sauce Code Pro ExtraLight Italic Nerd Font.ttf | | Sauce Code Pro ExtraLight Italic Nerd Font | | SauceCodePro Nerd Font | | Italic | | SauceCodePro Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|SourceCodePro-ExtraLight.ttf | | Source Code Pro ExtraLight | | Source Code Pro ExtraLight | | Regular | | Source Code Pro | | ExtraLight -+|Sauce Code Pro Nerd Font ExtraLight.ttf | | Sauce Code Pro Nerd Font ExtraLight |X| SauceCodePro Nerd Font ExtraLight | | Regular | | SauceCodePro Nerd Font | | ExtraLight --|Sauce Code Pro ExtraLight Nerd Font.ttf | | Sauce Code Pro ExtraLight Nerd Font | | SauceCodePro Nerd Font | | Regular | | SauceCodePro Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|SourceCodePro-LightIt.ttf | | Source Code Pro Light Italic | | Source Code Pro Light | | Italic | | Source Code Pro | | Light Italic -+|Sauce Code Pro Nerd Font Light Italic.ttf | | Sauce Code Pro Nerd Font Light Italic |X| SauceCodePro Nerd Font Light | | Italic | | SauceCodePro Nerd Font | | Light Italic --|Sauce Code Pro Light Italic Nerd Font.ttf | | Sauce Code Pro Light Italic Nerd Font | | SauceCodePro Nerd Font | | Italic | | SauceCodePro Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|SourceCodePro-Light.ttf | | Source Code Pro Light | | Source Code Pro Light | | Regular | | Source Code Pro | | Light -+|Sauce Code Pro Nerd Font Light.ttf | | Sauce Code Pro Nerd Font Light |X| SauceCodePro Nerd Font Light | | Regular | | SauceCodePro Nerd Font | | Light --|Sauce Code Pro Light Nerd Font.ttf | | Sauce Code Pro Light Nerd Font | | SauceCodePro Nerd Font | | Regular | | SauceCodePro Nerd Font | | Light -#### Add weight/style to family [1] ->|SourceCodePro-MediumIt.ttf | | Source Code Pro Medium Italic | | Source Code Pro Medium | | Italic | | Source Code Pro | | Medium Italic -+|Sauce Code Pro Nerd Font Medium Italic.ttf | | Sauce Code Pro Nerd Font Medium Italic |X| SauceCodePro Nerd Font Medium | | Italic | | SauceCodePro Nerd Font | | Medium Italic --|Sauce Code Pro Medium Italic Nerd Font.ttf | | Sauce Code Pro Medium Italic Nerd Font | | SauceCodePro Nerd Font | | Italic | | SauceCodePro Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|SourceCodePro-Medium.ttf | | Source Code Pro Medium | | Source Code Pro Medium | | Regular | | Source Code Pro | | Medium -+|Sauce Code Pro Nerd Font Medium.ttf | | Sauce Code Pro Nerd Font Medium |X| SauceCodePro Nerd Font Medium | | Regular | | SauceCodePro Nerd Font | | Medium --|Sauce Code Pro Medium Nerd Font.ttf | | Sauce Code Pro Medium Nerd Font | | SauceCodePro Nerd Font | | Regular | | SauceCodePro Nerd Font | | Medium -#### Add weight/style to family [1] ->|SourceCodePro-SemiboldIt.ttf | | Source Code Pro Semibold Italic | | Source Code Pro Semibold | | Italic | | Source Code Pro | | Semibold Italic -+|Sauce Code Pro Nerd Font SemiBold Italic.ttf | | Sauce Code Pro Nerd Font SemiBold Italic |X| SauceCodePro Nerd Font SemiBold | | Italic | | SauceCodePro Nerd Font | | SemiBold Italic --|Sauce Code Pro Semibold Italic Nerd Font.ttf | | Sauce Code Pro Semibold Italic Nerd Font | | SauceCodePro Nerd Font | | Italic | | SauceCodePro Nerd Font | | Semibold Italic -#### Add weight/style to family [1] ->|SourceCodePro-Semibold.ttf | | Source Code Pro Semibold | | Source Code Pro Semibold | | Regular | | Source Code Pro | | Semibold -+|Sauce Code Pro Nerd Font SemiBold.ttf | | Sauce Code Pro Nerd Font SemiBold |X| SauceCodePro Nerd Font SemiBold | | Regular | | SauceCodePro Nerd Font | | SemiBold --|Sauce Code Pro Semibold Nerd Font.ttf | | Sauce Code Pro Semibold Nerd Font | | SauceCodePro Nerd Font | | Regular | | SauceCodePro Nerd Font | | Semibold -#### We handle (TTF) as sub-name ->|TerminusTTF-Bold Italic-4.40.1.ttf | | Terminus (TTF) Bold Italic | | Terminus (TTF) | | Bold Italic | | | | -+|Terminess (TTF) Nerd Font Bold Italic.ttf | | Terminess (TTF) Nerd Font Bold Italic |X| Terminess (TTF) Nerd Font | | Bold Italic |X| | | --|Terminess (TTF) Bold Italic Nerd Font.ttf | | Terminess (TTF) Bold Italic Nerd Font | | TerminessTTF Nerd Font | | Bold Italic | | TerminessTTF Nerd Font | | -#### We handle (TTF) as sub-name ->|TerminusTTF-Bold-4.40.1.ttf | | Terminus (TTF) Bold | | Terminus (TTF) | | Bold | | | | -+|Terminess (TTF) Nerd Font Bold.ttf | | Terminess (TTF) Nerd Font Bold |X| Terminess (TTF) Nerd Font | | Bold |X| | | --|Terminess (TTF) Bold Nerd Font.ttf | | Terminess (TTF) Bold Nerd Font | | TerminessTTF Nerd Font | | Bold | | TerminessTTF Nerd Font | | -#### We handle (TTF) as sub-name ->|TerminusTTF-Italic-4.40.1.ttf | | Terminus (TTF) Italic | | Terminus (TTF) | | Italic | | | | -+|Terminess (TTF) Nerd Font Italic.ttf | | Terminess (TTF) Nerd Font Italic |X| Terminess (TTF) Nerd Font | | Italic |X| | | --|Terminess (TTF) Italic Nerd Font.ttf | | Terminess (TTF) Italic Nerd Font | | TerminessTTF Nerd Font | | Italic | | TerminessTTF Nerd Font | | -#### We handle (TTF) as sub-name ->|TerminusTTF-4.40.1.ttf | | Terminus (TTF) | | Terminus (TTF) | | Medium | | | | -+|Terminess (TTF) Nerd Font.ttf | | Terminess (TTF) Nerd Font |X| Terminess (TTF) Nerd Font |X| Regular |X| | | --|Terminess (TTF) Nerd Font.ttf | | Terminess (TTF) Nerd Font | | TerminessTTF Nerd Font | | Medium | | TerminessTTF Nerd Font | | -#### Change regular-equivalent name to Regular [4] ->|Tinos-Regular.ttf | | Tinos | | Tinos | | Regular | | | | -+|Tinos Nerd Font.ttf | | Tinos Nerd Font | | Tinos Nerd Font |X| Regular | | | | --|Tinos Nerd Font.ttf | | Tinos Nerd Font | | Tinos Nerd Font | | Book | | Tinos Nerd Font | | -#### Weight Condensed does not belong to base name ->|Ubuntu-C.ttf | | Ubuntu Condensed | | Ubuntu Condensed | | Regular | | Ubuntu Condensed | | Regular -+|Ubuntu Nerd Font Condensed.ttf | | Ubuntu Nerd Font Condensed |X| Ubuntu Nerd Font Condensed | | Regular |X| Ubuntu Nerd Font |X| Condensed --|Ubuntu Condensed Nerd Font.ttf | | Ubuntu Condensed Nerd Font | | UbuntuCondensed Nerd Font | | Regular | | UbuntuCondensed Nerd Font | | Regular -#### Add weight/style to family [1] ->|Ubuntu-LI.ttf | | Ubuntu Light Italic | | Ubuntu Light | | Italic | | Ubuntu | | Light Italic -+|Ubuntu Nerd Font Light Italic.ttf | | Ubuntu Nerd Font Light Italic |X| Ubuntu Nerd Font Light | | Italic | | Ubuntu Nerd Font | | Light Italic --|Ubuntu Light Italic Nerd Font.ttf | | Ubuntu Light Italic Nerd Font | | Ubuntu Nerd Font | | Italic | | Ubuntu Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|Ubuntu-L.ttf | | Ubuntu Light | | Ubuntu Light | | Regular | | Ubuntu | | Light -+|Ubuntu Nerd Font Light.ttf | | Ubuntu Nerd Font Light |X| Ubuntu Nerd Font Light | | Regular | | Ubuntu Nerd Font | | Light --|Ubuntu Light Nerd Font.ttf | | Ubuntu Light Nerd Font | | Ubuntu Nerd Font | | Regular | | Ubuntu Nerd Font | | Light -#### Classify Medium as own weigt and not Bold [3] Original font broken (Light in Family) ->|Ubuntu-MI.ttf | | Ubuntu Medium Italic | | Ubuntu Light | | Bold Italic | | Ubuntu | | Medium Italic -+|Ubuntu Nerd Font Medium Italic.ttf | | Ubuntu Nerd Font Medium Italic |X| Ubuntu Nerd Font Medium |X| Italic | | Ubuntu Nerd Font | | Medium Italic --|Ubuntu Medium Italic Nerd Font.ttf | | Ubuntu Medium Italic Nerd Font | | Ubuntu Nerd Font | | Bold Italic | | Ubuntu Nerd Font | | Medium Italic -#### Classify Medium as own weigt and not Bold [3] Original font broken (Light in Family) ->|Ubuntu-M.ttf | | Ubuntu Medium | | Ubuntu Light | | Bold | | Ubuntu | | Medium -+|Ubuntu Nerd Font Medium.ttf | | Ubuntu Nerd Font Medium |X| Ubuntu Nerd Font Medium |X| Regular | | Ubuntu Nerd Font | | Medium --|Ubuntu Medium Nerd Font.ttf | | Ubuntu Medium Nerd Font | | Ubuntu Nerd Font | | Bold | | Ubuntu Nerd Font | | Medium -#### Use only Regular/Bold/Italic in SubFamily [2] Change regular-equivalent name to Regular [4] ->|Ubuntu-R.ttf | | Ubuntu | | Ubuntu | | Regular | | | | -+|Ubuntu Nerd Font.ttf | | Ubuntu Nerd Font | | Ubuntu Nerd Font |X| Regular | | | | --|Ubuntu Nerd Font.ttf | | Ubuntu Nerd Font | | Ubuntu Nerd Font | | Book | | Ubuntu Nerd Font | | -#### Add weight/style to family [1] ->|VictorMono-BoldOblique.ttf | | Victor Mono Bold Oblique | | Victor Mono Oblique | | Bold Italic | | Victor Mono | | Bold Oblique -+|Victor Mono Nerd Font Bold Oblique.ttf | | Victor Mono Nerd Font Bold Oblique |X| VictorMono Nerd Font Oblique | | Bold Italic | | VictorMono Nerd Font | | Bold Oblique --|Victor Mono Bold Oblique Nerd Font.ttf | | Victor Mono Bold Oblique Nerd Font | | VictorMono Nerd Font | | Bold Italic | | VictorMono Nerd Font | | Bold Oblique -#### Add weight/style to family [1] ->|VictorMono-ExtraLightItalic.ttf | | Victor Mono ExtraLight Italic | | Victor Mono ExtraLight | | Italic | | Victor Mono | | ExtraLight Italic -+|Victor Mono Nerd Font ExtraLight Italic.ttf | | Victor Mono Nerd Font ExtraLight Italic |X| VictorMono Nerd Font ExtraLight | | Italic | | VictorMono Nerd Font | | ExtraLight Italic --|Victor Mono ExtraLight Italic Nerd Font.ttf | | Victor Mono ExtraLight Italic Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | ExtraLight Italic -#### Add weight/style to family [1] ->|VictorMono-ExtraLightOblique.ttf | | Victor Mono ExtraLight Oblique | | Victor Mono ExtraLight | | Italic | | Victor Mono | | ExtraLight Oblique -+|Victor Mono Nerd Font ExtraLight Oblique.ttf | | Victor Mono Nerd Font ExtraLight Oblique |X| VictorMono Nerd Font ExtraLight Oblique | | Italic | | VictorMono Nerd Font | | ExtraLight Oblique --|Victor Mono ExtraLight Oblique Nerd Font.ttf | | Victor Mono ExtraLight Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | ExtraLight Oblique -#### Add weight/style to family [1] ->|VictorMono-ExtraLight.ttf | | Victor Mono ExtraLight | | Victor Mono ExtraLight | | Regular | | Victor Mono | | ExtraLight -+|Victor Mono Nerd Font ExtraLight.ttf | | Victor Mono Nerd Font ExtraLight |X| VictorMono Nerd Font ExtraLight | | Regular | | VictorMono Nerd Font | | ExtraLight --|Victor Mono ExtraLight Nerd Font.ttf | | Victor Mono ExtraLight Nerd Font | | VictorMono Nerd Font | | Regular | | VictorMono Nerd Font | | ExtraLight -#### Add weight/style to family [1] ->|VictorMono-LightItalic.ttf | | Victor Mono Light Italic | | Victor Mono Light | | Italic | | Victor Mono | | Light Italic -+|Victor Mono Nerd Font Light Italic.ttf | | Victor Mono Nerd Font Light Italic |X| VictorMono Nerd Font Light | | Italic | | VictorMono Nerd Font | | Light Italic --|Victor Mono Light Italic Nerd Font.ttf | | Victor Mono Light Italic Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Light Italic -#### Add weight/style to family [1] ->|VictorMono-LightOblique.ttf | | Victor Mono Light Oblique | | Victor Mono Light | | Italic | | Victor Mono | | Light Oblique -+|Victor Mono Nerd Font Light Oblique.ttf | | Victor Mono Nerd Font Light Oblique |X| VictorMono Nerd Font Light Oblique | | Italic | | VictorMono Nerd Font | | Light Oblique --|Victor Mono Light Oblique Nerd Font.ttf | | Victor Mono Light Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Light Oblique -#### Add weight/style to family [1] ->|VictorMono-Light.ttf | | Victor Mono Light | | Victor Mono Light | | Regular | | Victor Mono | | Light -+|Victor Mono Nerd Font Light.ttf | | Victor Mono Nerd Font Light |X| VictorMono Nerd Font Light | | Regular | | VictorMono Nerd Font | | Light --|Victor Mono Light Nerd Font.ttf | | Victor Mono Light Nerd Font | | VictorMono Nerd Font | | Regular | | VictorMono Nerd Font | | Light -#### Add weight/style to family [1] ->|VictorMono-MediumItalic.ttf | | Victor Mono Medium Italic | | Victor Mono Medium | | Italic | | Victor Mono | | Medium Italic -+|Victor Mono Nerd Font Medium Italic.ttf | | Victor Mono Nerd Font Medium Italic |X| VictorMono Nerd Font Medium | | Italic | | VictorMono Nerd Font | | Medium Italic --|Victor Mono Medium Italic Nerd Font.ttf | | Victor Mono Medium Italic Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Medium Italic -#### Add weight/style to family [1] ->|VictorMono-MediumOblique.ttf | | Victor Mono Medium Oblique | | Victor Mono Medium | | Italic | | Victor Mono | | Medium Oblique -+|Victor Mono Nerd Font Medium Oblique.ttf | | Victor Mono Nerd Font Medium Oblique |X| VictorMono Nerd Font Medium Oblique | | Italic | | VictorMono Nerd Font | | Medium Oblique --|Victor Mono Medium Oblique Nerd Font.ttf | | Victor Mono Medium Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Medium Oblique -#### Add weight/style to family [1] ->|VictorMono-Medium.ttf | | Victor Mono Medium | | Victor Mono Medium | | Regular | | Victor Mono | | Medium -+|Victor Mono Nerd Font Medium.ttf | | Victor Mono Nerd Font Medium |X| VictorMono Nerd Font Medium | | Regular | | VictorMono Nerd Font | | Medium --|Victor Mono Medium Nerd Font.ttf | | Victor Mono Medium Nerd Font | | VictorMono Nerd Font | | Regular | | VictorMono Nerd Font | | Medium -#### Add weight/style to family [1] ->|VictorMono-Oblique.ttf | | Victor Mono Oblique | | Victor Mono Oblique | | Italic | | Victor Mono | | Oblique -+|Victor Mono Nerd Font Oblique.ttf | | Victor Mono Nerd Font Oblique |X| VictorMono Nerd Font Oblique | | Italic | | VictorMono Nerd Font | | Oblique --|Victor Mono Oblique Nerd Font.ttf | | Victor Mono Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Oblique -#### Add weight/style to family [1] ->|VictorMono-SemiBoldItalic.ttf | | Victor Mono SemiBold Italic | | Victor Mono SemiBold | | Italic | | Victor Mono | | SemiBold Italic -+|Victor Mono Nerd Font SemiBold Italic.ttf | | Victor Mono Nerd Font SemiBold Italic |X| VictorMono Nerd Font SemiBold | | Italic | | VictorMono Nerd Font | | SemiBold Italic --|Victor Mono SemiBold Italic Nerd Font.ttf | | Victor Mono SemiBold Italic Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | SemiBold Italic -#### Add weight/style to family [1] ->|VictorMono-SemiBoldOblique.ttf | | Victor Mono SemiBold Oblique | | Victor Mono SemiBold | | Italic | | Victor Mono | | SemiBold Oblique -+|Victor Mono Nerd Font SemiBold Oblique.ttf | | Victor Mono Nerd Font SemiBold Oblique |X| VictorMono Nerd Font SemiBold Oblique | | Italic | | VictorMono Nerd Font | | SemiBold Oblique --|Victor Mono SemiBold Oblique Nerd Font.ttf | | Victor Mono SemiBold Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | SemiBold Oblique -#### Add weight/style to family [1] ->|VictorMono-SemiBold.ttf | | Victor Mono SemiBold | | Victor Mono SemiBold | | Regular | | Victor Mono | | SemiBold -+|Victor Mono Nerd Font SemiBold.ttf | | Victor Mono Nerd Font SemiBold |X| VictorMono Nerd Font SemiBold | | Regular | | VictorMono Nerd Font | | SemiBold --|Victor Mono SemiBold Nerd Font.ttf | | Victor Mono SemiBold Nerd Font | | VictorMono Nerd Font | | Regular | | VictorMono Nerd Font | | SemiBold -#### Add weight/style to family [1] ->|VictorMono-ThinItalic.ttf | | Victor Mono Thin Italic | | Victor Mono Thin | | Italic | | Victor Mono | | Thin Italic -+|Victor Mono Nerd Font Thin Italic.ttf | | Victor Mono Nerd Font Thin Italic |X| VictorMono Nerd Font Thin | | Italic | | VictorMono Nerd Font | | Thin Italic --|Victor Mono Thin Italic Nerd Font.ttf | | Victor Mono Thin Italic Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Thin Italic -#### Add weight/style to family [1] ->|VictorMono-ThinOblique.ttf | | Victor Mono Thin Oblique | | Victor Mono Thin | | Italic | | Victor Mono | | Thin Oblique -+|Victor Mono Nerd Font Thin Oblique.ttf | | Victor Mono Nerd Font Thin Oblique |X| VictorMono Nerd Font Thin Oblique | | Italic | | VictorMono Nerd Font | | Thin Oblique --|Victor Mono Thin Oblique Nerd Font.ttf | | Victor Mono Thin Oblique Nerd Font | | VictorMono Nerd Font | | Italic | | VictorMono Nerd Font | | Thin Oblique -#### Add weight/style to family [1] ->|VictorMono-Thin.ttf | | Victor Mono Thin | | Victor Mono Thin | | Regular | | Victor Mono | | Thin -+|Victor Mono Nerd Font Thin.ttf | | Victor Mono Nerd Font Thin |X| VictorMono Nerd Font Thin | | Regular | | VictorMono Nerd Font | | Thin --|Victor Mono Thin Nerd Font.ttf | | Victor Mono Thin Nerd Font | | VictorMono Nerd Font | | Regular | | VictorMono Nerd Font | | Thin diff --git a/bin/scripts/name_parser/query_names b/bin/scripts/name_parser/query_names index c1a273031..e05c351c3 100755 --- a/bin/scripts/name_parser/query_names +++ b/bin/scripts/name_parser/query_names @@ -1,5 +1,8 @@ #!/usr/bin/env python3 # coding=utf8 +# +# Usually called via +# $ fontforge query_names fontfile.tff 2>/dev/null import sys import os.path @@ -13,10 +16,10 @@ def get_sfnt_dict(font): def format_names(header, *stuff): """Unify outputs (with header)""" - f = '{:1.1}|{:50.50} |{:1.1}| {:65.65} |{:1.1}| {:55.55} |{:1.1}| {:30.30} |{:1.1}| {:40.40} |{:1.1}| {:.40}' + f = '| {:50.50}|{:>2.2}| {:64.64}|{:>2.2}| {:64.64}|{:>2.2}| {:55.55}|{:>2.2}| {:30.30}|{:>2.2}| {:40.40}|{:>2.2}| {:40.40}|{:>2.2}|' if header: - d = '------------------------------------------------------------' - return f.format(*stuff) + '\n' + f.format('', d, d, d, d, d, d, d, d, d, d, d) + d = '' + return f.format(*stuff) + '\n' + f.format(d, d, d, d, d, d, d, d, d, d, d, d, d, d).replace(' ', '-') return f.format(*stuff).rstrip() ###### Let's go! @@ -27,7 +30,7 @@ if len(sys.argv) < 2: print('Examining {} font files'.format(len(sys.argv) - 1)) -print(format_names(True, '', 'Filename', '', 'Fullname', '', 'Family', '', 'Subfamily', '', 'Typogr. Family', '', 'Typogr. Subfamily')) +print(format_names(True, 'Filename', '', 'PS Name', '', 'Fullname', '', 'Family', '', 'Subfamily', '', 'Typogr. Family', '', 'Typogr. Subfamily', '')) for filename in sys.argv[1:]: fullfile = os.path.basename(filename) @@ -35,6 +38,7 @@ for filename in sys.argv[1:]: font = fontforge.open(filename, 1) sfnt = get_sfnt_dict(font) + psname = font.fontname font.close() sfnt_full = sfnt['Fullname'] @@ -43,6 +47,14 @@ for filename in sys.argv[1:]: sfnt_pfam = sfnt['Preferred Family'] if 'Preferred Family' in sfnt else '' sfnt_psubfam = sfnt['Preferred Styles'] if 'Preferred Styles' in sfnt else '' - o2 = format_names(False, '', fullfile, '', sfnt_full, '', sfnt_fam, '', sfnt_subfam, '', sfnt_pfam, '', sfnt_psubfam) + o2 = format_names(False, + fullfile, str(len(fullfile)), + psname, str(len(psname)), + sfnt_full, str(len(sfnt_full)), + sfnt_fam, str(len(sfnt_fam)), + sfnt_subfam, str(len(sfnt_subfam)), + # show length zero if a zero length string is stored, show nothing if nothing is stored: + sfnt_pfam, str(len(sfnt_pfam)) if 'Preferred Family' in sfnt else '', + sfnt_psubfam, str(len(sfnt_psubfam)) if 'Preferred Family' in sfnt else '') print(o2) diff --git a/bin/scripts/name_parser/tags b/bin/scripts/name_parser/tags deleted file mode 100644 index 62c78cf32..000000000 --- a/bin/scripts/name_parser/tags +++ /dev/null @@ -1,14 +0,0 @@ -Add weight/style to family [1] -Use only Regular/Bold/Italic in SubFamily [2] -Classify Medium as own weight and not Bold [3] -Change regular-equivalent name to Regular [4] -Drop unneeded Typogr.Family/Typogr.Style [5] -Do not call Semibold Light-Bold [6] -Fullname has been missing 'Nerd Font' [7] -The fonts name is M+ not Mplus [8] -Handle Retina as Weight and not Style [9] -Bold and Italic are styles of a basefont [10] -Put Oblique into own SubFamily (and mark it as italic) [11] -'Term' is missing from Family [12] -Bold / Bold-Italic are just a styles of Regular [13] -Drop Regular from Style [14]