kongou-ae / md-kumihan

convert markdown to good pdf
MIT License
3 stars 0 forks source link

head.htmlをやめたい #6

Closed kongou-ae closed 9 years ago

kongou-ae commented 9 years ago

phantom.jsの機能でページにheadを追加できないものか。

kongou-ae commented 9 years ago

page.evaluateでできた。

page.evaluate(function (cssPath) {
    var cssPath = '../css/pdf.css';
    var head = document.querySelector("head")

    var css = document.createElement("link");
    css.rel = "stylesheet";
    css.href = cssPath;
    css.type = "text/css";
    head.appendChild(css);

    var meta = document.createElement("meta");
    meta.setAttribute('charset', 'utf-8');
    head.appendChild(meta);
  });