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

16 lines
470 B
Ruby

# frozen_string_literal: true
module Mixin::Inline
def inline_json(path, class_name: File.basename(path, File.extname(path)))
%|<script class="json #{class_name}" type="application/json">| \
"#{items[path].compiled_content}" \
"</script>"
end
def inline_css(path)
class_name = File.basename(path, File.extname(path))
%|<style class="css #{class_name}">| \
"#{items[path.sub(".css", ".scss")].compiled_content}" \
"</style>"
end
end