plugin-xml icon indicating copy to clipboard operation
plugin-xml copied to clipboard

XML attributes are uncommonly indented

Open stefan-jung opened this issue 1 year ago • 0 comments

Hi, is this the expected Prettier indentation result?

grafik

I would have expected instead of this:

        <cover-image name="cover-image">
            <image
        href="../_common/IMG_FreshJetLite48VTitle.png"
        placement="break"
        scalefit="yes"
        format="png"
        translate="no"
      />
        </cover-image>

Something like this:

        <cover-image name="cover-image">
            <image
                href="../_common/IMG_FreshJetLite48VTitle.png"
                placement="break"
                scalefit="yes"
                format="png"
                translate="no"
            />
        </cover-image>

stefan-jung avatar Feb 12 '24 21:02 stefan-jung