使用 Jekyll stylus 插件时如何执行 --include-css

How to perform --include-css when using the Jekyll stylus plugin

我刚刚开始使用 Jekyll 和此处提供的手写笔插件: https://gist.github.com/adamjspooner/988201

我的手写笔文件中有一些导入语句,如下所示:

@import 'normalize.css'

手写笔插件将手写笔文件正确转换为 css,但将导入语句保留在生成的 css 文件中。我想让导入语句在生成 css 时包含 css 文件的内容。使用命令行编译 stylus 时,您可以使用 --include-css 选项来执行此任务。在 Jekyll 中使用 stylus 插件时,人们会怎么做呢?

您可以尝试将带有 'include css' 键的选项对象添加到编译方法中,但我不确定它是否有效:

Stylus.compile content, { 'include css' => true }