]> git.openstreetmap.org Git - rails.git/blob - config/initializers/inline_svg.rb
Generalize links to active pages
[rails.git] / config / initializers / inline_svg.rb
1 module OpenStreetMap
2   class SvgToSymbolTransform < InlineSvg::CustomTransformation
3     def transform(doc)
4       with_svg(doc) do |svg|
5         svg.name = "symbol"
6       end
7     end
8   end
9 end
10
11 InlineSvg.configure do |config|
12   config.add_custom_transformation(:attribute => :to_symbol, :transform => OpenStreetMap::SvgToSymbolTransform)
13 end