Am Donnerstag, den 16.04.2020, 05:00 -0400 schrieb Patrice Levesque: > Hi! > > I just discovered that the “style” tag created inside svg output uses the > wrong syntax, e.g. > > <style text="style/css"> > Should be: > > <style type="text/css"> > Reference: https://www.w3.org/TR/SVG/styling.html#StyleElement > > A trivial one-line patch to fix this (based on git master): > > diff --git a/scm/framework-svg.scm b/scm/framework-svg.scm > index 0abb430fe3..07d4d9e3ec 100644 > --- a/scm/framework-svg.scm > +++ b/scm/framework-svg.scm > @@ -56,7 +56,7 @@ > `(viewBox . ,(ly:format "~4f ~4f ~4f ~4f" > (third rest) (fourth rest) > (fifth rest) (sixth rest)))) > - (eo 'style #t '(text . "style/css")) > + (eo 'style #t '(type . "text/css")) > "<