markdown-to-pdf icon indicating copy to clipboard operation
markdown-to-pdf copied to clipboard

Font face support in theme.css

Open devkaiwang opened this issue 2 years ago • 0 comments

Hi thanks for the amazing project!

I got an issue that I could not use customized local font using @font-face in the style css file.

@font-face {
  font-family: 'my-font';
  src: url("font/my-font.ttf") format('truetype');
}
body {
  font-family: 'my-font';
  font-size: 12px;
  color: #444444;
  background-color: #ffffff;
}

no font is embed into the generated PDF file.

devkaiwang avatar Aug 29 '23 16:08 devkaiwang