Heroku 为使用 HyPDF 将 HTML 转换为 PDF 格式的用户提供以下建议:
Place your styles and scripts within <style> and <script> tags instead of loading them using <link> tag.
目前,我正在使用以下内容:
= stylesheet_link_tag "print", :media => "print, screen, projection"
生成<style>
具有嵌入式未链接 CSS 的等价物的 Rails 3.2 代码是什么?
(也就是说,Rails 会自动将所有 CSS 插入/app/assets/stylesheets/print.scss
到它生成的 HTML 中,而不是我手动将所有 CSS 复制粘贴到 acontent_tag
中,然后必须维护该标签的内容。)
在 API 文档中找不到任何内容。
谢谢。