FrontendMatter / mkpdf

Convert Markdown to PDF using marked and wkhtmltopdf
8 stars 0 forks source link

table not interprested #2

Open timactive opened 7 years ago

timactive commented 7 years ago

I try just this

| API        | Documented CSP Policy           |
| ------------- | ------------- |
|Google Fonts|No documented policy|
|Mixpanel|No documented policy|
|Ractive.js|[Documented policy](http://docs.ractivejs.org/edge/csp)|
|Stripe|[Documented policy](https://support.stripe.com/questions/what-about-pci-dss-3-1)|

But it's not Interpreted.

timactive commented 7 years ago

Hi, I replace and working fine :

function transform (chunk, enc, cb) {
            md += chunk + '\n\n'
            cb()
        },

by

function transform (chunk, enc, cb) {
            md += chunk
            cb()
        },