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

CJK fonts support to pdf

Open rickywu opened this issue 7 years ago • 1 comments

The output only contains number and alphabetic, Chinese, Japanese, Korean characters missed

My md file is utf-8 encoding.

rickywu avatar Sep 25 '18 09:09 rickywu

I'm late to help you out, but just fixed loading a custom font using only stylesheets like this:

/* pdfstyle.css */
@import url('https://fonts.googleapis.com/css?family=Pontano+Sans');

html {
    font-family: 'Pontano Sans';
}

and

markdownpdf({
  cssPath: __dirname + '/pdfstyle.css',
  paperBorder: '1cm',
  ...
})...

akaustel avatar Apr 26 '19 11:04 akaustel