Code Monkey home page Code Monkey logo

Comments (5)

dtboy1995 avatar dtboy1995 commented on May 31, 2024 3

@nashwaan hello

  • when i set indentAttributes: true

i got

<?xml 
  version="1.0" 
  encoding="utf-8"
?>
<...>

i don't want to indent the first row

Any help would be greatly appreciated

from xml-js.

nashwaan avatar nashwaan commented on May 31, 2024 2

I have added noQuotesForNativeAttributes support but as a hidden option (no public documentation) in v1.5.1 because this library doesn't support converting <a bar=1/> back to javascript object.

from xml-js.

nashwaan avatar nashwaan commented on May 31, 2024 1

This is a good request. I will plan to implement it, but expect some delays (1-2 weeks) as I am travelling at the moment.

from xml-js.

nashwaan avatar nashwaan commented on May 31, 2024

I have published v1.5.0 that supports new option indentAttributes flag.
So, if the input is:

var js = {
    parent: {
        _attributes: {
            bar: 1,
            baz: 'hello'
        },
        child: {
            _attributes: {
                attr1: 'a',
                attr2: 'b'
            }
        }
    }
};

and using convert.js2xml(js, {indentAttributes: true, spaces: 2, compact: true}), the output will be:

<parent
  bar="1"
  baz="hello"
>
  <child
    attr1="a"
    attr2="b"
  />
</parent>

I hope attributes indentation works correctly for you.


Note, however, that bar="1" (not bar=1 as in your sample output). This is an existing behavior in this library where attribute values should be surrounded by double quotes. This behavior is not related to your new feature request. But if you still think that bar=1 is a better match for the input bar: 1, then I might consider for adding another new option, say noQuotesForNativeAttributes, to produce same output as in your example.

from xml-js.

koliyo avatar koliyo commented on May 31, 2024

Thanks! Well, noQuotesForNativeAttributes would be nice, but this was the main thing I was looking for :)

from xml-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.