Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add Noto Sans Symbols 2 font to PDF template #926

Merged
merged 3 commits into from
Oct 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions xml2rfc/writers/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,15 @@ def write(self, filename):

def get_serif_fonts(self):
fonts = set()
scripts = self.root.get('scripts').split(',')
scripts = self.root.get("scripts").split(",")
noto_serif = "Noto Serif"
noto_symbols = "NotoSansSymbols2"
for script in scripts:
family = get_noto_serif_family_for_script(script)
fonts.add("%s" % family)
fonts -= set([ noto_serif, ])
fonts = [ noto_serif, ] + list(fonts)
self.note(None, "Found installed font: %s" % ', '.join(fonts))
fonts = [noto_serif, noto_symbols] + list(fonts)
self.note(None, "Found installed font: %s" % ", ".join(fonts))
return fonts

def get_mono_fonts(self):
Expand Down