我有一些额外的处理,并希望根据现有内容生成一些javascript文件。
因此,我需要在网站编译和生成后调用我的代码,因此我可以在输出中创建新文件。
如何在nanoc中做到这一点?谢谢!
答案 0 :(得分:0)
您可以使用Rules
方法在postprocess
中使用Ruby代码:
postprocess do
items.each do |item|
if item.identifier.to_s.end_with?(".js")
# Do stuff
end
end
end