jmaupetit / md2pdf

Markdown to PDF conversion tool
MIT License
268 stars 41 forks source link

Change fonts? #27

Closed kross-italk closed 5 years ago

kross-italk commented 5 years ago

What is the expected way to change fonts? I tried unsuccessfully to use @import and @font-face with a google fonts URL, and from a local ttf file. I'm not sure why the later two break but @import is css3 and makes sense.

Is this a limitation of whatever implements the rendering in python? Do you know how I should approach this?

@font-face {
  font-family: 'Roboto';
  src: url(Roboto-Light.ttf) format('truetype');
}
kross-italk commented 5 years ago

28