2023-03-11 13:31:37 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-11 13:27:31 +01:00
|
|
|
module Helper
|
|
|
|
def inline_json(path)
|
2023-03-11 13:31:37 +01:00
|
|
|
class_name = File.basename(path, File.extname(path))
|
|
|
|
"<script class='json #{class_name}' type='application/json'>" \
|
2023-03-11 13:27:31 +01:00
|
|
|
"#{items[path].compiled_content}" \
|
|
|
|
"</script>"
|
|
|
|
end
|
2023-03-11 14:45:12 +01:00
|
|
|
|
|
|
|
def inline_css(path)
|
|
|
|
"<style>" \
|
|
|
|
"#{items[path].compiled_content}" \
|
|
|
|
"</style>"
|
|
|
|
end
|
2023-03-11 13:27:31 +01:00
|
|
|
end
|
|
|
|
use_helper Helper
|