Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 841 Bytes

File metadata and controls

36 lines (25 loc) · 841 Bytes

SVGs

Table of Contents

Resources

Replace and Encode SVGs

These two formulas go well together.

fxGetColoredSVGNoEncode(SVGText:Text, ColorToReplace:Text, DesiredColor:Text):Text =  
    Substitute(
        SVGText, 
        $"='{ColorToReplace}'", 
        $"='{DesiredColor}'"
    );

fxSVGEncode(svgCode:Text):Text = 
    "data:image/svg+xml; utf8, " & EncodeUrl(svgCode);

History

Date Author Changes
2026-01-27 Migration Initial TOC and history section added