We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
links_to_font_files
1 parent 8bb39bc commit db87619Copy full SHA for db87619
rendercv_fonts/__init__.py
@@ -19,3 +19,13 @@
19
for font_famiy in available_font_families
20
}
21
paths_to_font_folders = [path for path in path_of.values()]
22
+paths_to_font_files = [
23
+ font_file
24
+ for font_folder in paths_to_font_folders
25
+ for font_file in font_folder.rglob("*")
26
+ if font_file.is_file() and font_file.suffix not in {"", ".txt"}
27
+]
28
+links_to_font_files = [
29
+ f"https://raw.githubusercontent.com/rendercv/rendercv-fonts/main/rendercv_fonts/{font_path.relative_to(package_folder_path)}"
30
+ for font_path in paths_to_font_files
31
0 commit comments