al-quran.reflectslight.io/nanoc/lib/utils/inline.rb

11 lines
240 B
Ruby
Raw Normal View History

2023-10-08 00:16:37 +02:00
# frozen_string_literal: true
2024-06-22 04:43:31 +02:00
module Utils::Inline
2023-10-07 08:21:48 +02:00
def inline_css(path)
class_name = File.basename(path, File.extname(path))
%|<style class="css #{class_name}">| \
"#{items[path].compiled_content}" \
2023-10-07 08:21:48 +02:00
"</style>"
end
end