Variable: shr-correct-attribute-case

shr-correct-attribute-case is a variable defined in shr.el.gz.

Value

Large value
((attributename . attributeName) (attributetype . attributeType)
 (basefrequency . baseFrequency) (baseprofile . baseProfile)
 (calcmode . calcMode) (clippathunits . clipPathUnits)
 (diffuseconstant . diffuseConstant) (edgemode . edgeMode)
 (filterunits . filterUnits) (glyphref . glyphRef)
 (gradienttransform . gradientTransform)
 (gradientunits . gradientUnits) (kernelmatrix . kernelMatrix)
 (kernelunitlength . kernelUnitLength) (keypoints . keyPoints)
 (keysplines . keySplines) (keytimes . keyTimes)
 (lengthadjust . lengthAdjust) (limitingconeangle . limitingConeAngle)
 (markerheight . markerHeight) (markerunits . markerUnits)
 (markerwidth . markerWidth) (maskcontentunits . maskContentUnits)
 (maskunits . maskUnits) (numoctaves . numOctaves)
 (pathlength . pathLength) (patterncontentunits . patternContentUnits)
 (patterntransform . patternTransform) (patternunits . patternUnits)
 (pointsatx . pointsAtX) (pointsaty . pointsAtY)
 (pointsatz . pointsAtZ) (preservealpha . preserveAlpha)
 (preserveaspectratio . preserveAspectRatio)
 (primitiveunits . primitiveUnits) (refx . refX) (refy . refY)
 (repeatcount . repeatCount) (repeatdur . repeatDur)
 (requiredextensions . requiredExtensions)
 (requiredfeatures . requiredFeatures)
 (specularconstant . specularConstant)
 (specularexponent . specularExponent) (spreadmethod . spreadMethod)
 (startoffset . startOffset) (stddeviation . stdDeviation)
 (stitchtiles . stitchTiles) (surfacescale . surfaceScale)
 (systemlanguage . systemLanguage) (tablevalues . tableValues)
 (targetx . targetX) (targety . targetY) (textlength . textLength)
 (viewbox . viewBox) (viewtarget . viewTarget)
 (xchannelselector . xChannelSelector)
 (ychannelselector . yChannelSelector) (zoomandpan . zoomAndPan))

Documentation

Attributes for correcting the case in SVG and MathML.

Based on https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign .

Source Code

;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
(defconst shr-correct-attribute-case
  '((attributename . attributeName)
    (attributetype . attributeType)
    (basefrequency . baseFrequency)
    (baseprofile . baseProfile)
    (calcmode . calcMode)
    (clippathunits . clipPathUnits)
    (diffuseconstant . diffuseConstant)
    (edgemode . edgeMode)
    (filterunits . filterUnits)
    (glyphref . glyphRef)
    (gradienttransform . gradientTransform)
    (gradientunits . gradientUnits)
    (kernelmatrix . kernelMatrix)
    (kernelunitlength . kernelUnitLength)
    (keypoints . keyPoints)
    (keysplines . keySplines)
    (keytimes . keyTimes)
    (lengthadjust . lengthAdjust)
    (limitingconeangle . limitingConeAngle)
    (markerheight . markerHeight)
    (markerunits . markerUnits)
    (markerwidth . markerWidth)
    (maskcontentunits . maskContentUnits)
    (maskunits . maskUnits)
    (numoctaves . numOctaves)
    (pathlength . pathLength)
    (patterncontentunits . patternContentUnits)
    (patterntransform . patternTransform)
    (patternunits . patternUnits)
    (pointsatx . pointsAtX)
    (pointsaty . pointsAtY)
    (pointsatz . pointsAtZ)
    (preservealpha . preserveAlpha)
    (preserveaspectratio . preserveAspectRatio)
    (primitiveunits . primitiveUnits)
    (refx . refX)
    (refy . refY)
    (repeatcount . repeatCount)
    (repeatdur . repeatDur)
    (requiredextensions . requiredExtensions)
    (requiredfeatures . requiredFeatures)
    (specularconstant . specularConstant)
    (specularexponent . specularExponent)
    (spreadmethod . spreadMethod)
    (startoffset . startOffset)
    (stddeviation . stdDeviation)
    (stitchtiles . stitchTiles)
    (surfacescale . surfaceScale)
    (systemlanguage . systemLanguage)
    (tablevalues . tableValues)
    (targetx . targetX)
    (targety . targetY)
    (textlength . textLength)
    (viewbox . viewBox)
    (viewtarget . viewTarget)
    (xchannelselector . xChannelSelector)
    (ychannelselector . yChannelSelector)
    (zoomandpan . zoomAndPan))
  "Attributes for correcting the case in SVG and MathML.
Based on https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign .")