Files
openstreetmap-website/config/initializers/inline_svg.rb
2025-07-16 12:31:00 +02:00

14 lines
341 B
Ruby

module OpenStreetMap
class SvgToSymbolTransform < InlineSvg::CustomTransformation
def transform(doc)
with_svg(doc) do |svg|
svg.name = "symbol"
end
end
end
end
InlineSvg.configure do |config|
config.add_custom_transformation(:attribute => :to_symbol, :transform => OpenStreetMap::SvgToSymbolTransform)
end