mirror of
https://github.com/openstreetmap/openstreetmap-website.git
synced 2025-07-29 12:51:32 +00:00
14 lines
341 B
Ruby
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
|