ฉันทำสิ่งนี้กับงาน Grunt โดยใช้ "grunt-text-replace" ฉันสามารถส่ง SVG แบบย่อ (svgmin) ของฉันผ่านนิพจน์ทั่วไปแบบกำหนดเองที่แทนที่การอ้างอิงคลาสที่อ่านไม่ออกทั้งหมดด้วยคลาสที่เหมาะสม
ใน Illustrator, ประกาศชื่อเลเยอร์ / วัตถุเป็นclass = "ต้นไม้"ยกตัวอย่างเช่น นี้จะมีการส่งออกโดย Illustrator เป็นid = "class =" ต้นไม้ "" ด้านล่างนี้งานที่ทำเสียงฮึดฮัดจะดูแลและทำให้มันclass = "ต้นไม้" ฉันกำลังวางภารกิจย่อยอื่น ๆ ไว้ด้านล่างเพื่อทำการล้างข้อมูล ID (แนะนำ)
replace: {
// ID cleanup: performs a manual ID cleanup as Illustrator exports a mess
illustrator: {
src: ['assets/svg/optimised/*.svg'],
overwrite: true,
replacements: [{
// Remove escaped underscore character
from: '_x5F_',
to: '_'
}, {
// Replace class names with proper classes
//class_x3D__x22_tank-option_x22__2_
from: /id\=\"class_x3D__x22_(.+?)_x22_(.*?)\"/gi,
to: function(matchedWord, index, fullText, regexMatches) {
return 'class="'+ regexMatches[0].toLowerCase()+'"';
}
}, {
// Lowercase all ids
from: /id\=\"(.+?)\"/gi,
to: function(matchedWord, index, fullText, regexMatches) {
return 'id="'+ regexMatches[0].toLowerCase()+'"';
}
}, {
// Lowercase all id references to match the previous replace rule
from: /url\(\#(.+?)\)/gi,
to: function(matchedWord, index, fullText, regexMatches) {
return 'url(#'+ regexMatches[0].toLowerCase() +')';
}
}, {
// Lowercase all id href to match the previous replace rule
from: /href\=\"\#(.+?)\"/gi,
to: function(matchedWord, index, fullText, regexMatches) {
return 'href="#'+ regexMatches[0].toLowerCase() +'"';
}
}, {
// Remove all font references as we will use CSS for this
from: /font\-family\=\"(.+?)\"/gi,
to: function(matchedWord, index, fullText, regexMatches) {
return '';
}
}]
}
}
จากนั้นคุณสามารถเรียกภารกิจนี้ภายใน Gruntfile ของคุณเป็น:
grunt.registerTask('svgclean', [
'replace:illustrator'
]);