mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 10:54:12 +03:00
75 lines
1.5 KiB
YAML
75 lines
1.5 KiB
YAML
|
multipass: true
|
||
|
|
||
|
plugins:
|
||
|
# Set <path> precision to 3 decimal places
|
||
|
- convertPathData:
|
||
|
floatPrecision: 3
|
||
|
|
||
|
# Sort attributes on the <SVG>
|
||
|
- sortAttrs:
|
||
|
order:
|
||
|
- role
|
||
|
- viewBox
|
||
|
xmlnsOrder: end
|
||
|
|
||
|
# Convert basic shapes (such as <circle>) to <path>, including <arc>
|
||
|
- convertShapeToPath:
|
||
|
convertArcs: true
|
||
|
|
||
|
# Compound all <path>s into one
|
||
|
- mergePaths:
|
||
|
force: true
|
||
|
|
||
|
# Keep the <title>
|
||
|
- removeTitle: false
|
||
|
|
||
|
# Don't remove the role="img" attribute and automatically
|
||
|
# add it to the SVG if it's not
|
||
|
- addAttributesToSVGElement:
|
||
|
attributes:
|
||
|
- role: img
|
||
|
- removeUnknownsAndDefaults:
|
||
|
keepRoleAttr: true
|
||
|
|
||
|
# Enable everything else
|
||
|
- removeDoctype
|
||
|
- removeXMLProcInst
|
||
|
- removeComments
|
||
|
- removeMetadata
|
||
|
- removeXMLNS
|
||
|
- removeEditorsNSData
|
||
|
- cleanupAttrs
|
||
|
- inlineStyles
|
||
|
- minifyStyles
|
||
|
- convertStyleToAttrs
|
||
|
- cleanupIDs
|
||
|
- prefixIds
|
||
|
- removeRasterImages
|
||
|
- removeUselessDefs
|
||
|
- cleanupNumericValues
|
||
|
- cleanupListOfValues
|
||
|
- convertColors
|
||
|
- removeNonInheritableGroupAttrs
|
||
|
- removeUselessStrokeAndFill
|
||
|
- removeViewBox
|
||
|
- cleanupEnableBackground
|
||
|
- removeHiddenElems
|
||
|
- removeEmptyText
|
||
|
- moveElemsAttrsToGroup
|
||
|
- moveGroupAttrsToElems
|
||
|
- collapseGroups
|
||
|
- convertTransform
|
||
|
- removeEmptyAttrs
|
||
|
- removeEmptyContainers
|
||
|
- removeUnusedNS
|
||
|
- removeDesc
|
||
|
- removeDimensions
|
||
|
- removeAttrs
|
||
|
- removeAttributesBySelector
|
||
|
- removeElementsByAttr
|
||
|
- addClassesToSVGElement
|
||
|
- removeStyleElement
|
||
|
- removeScriptElement
|
||
|
- removeOffCanvasPaths
|
||
|
- reusePaths
|