I feel that Yaml sucks. I understand the need for such markup language but I think it sucks. Somehow it’s clunky to use. Can you explain why?

    • @borup
      link
      English
      1312 days ago

      JSON does lack comments. And numbers that are not 64 floats.

          • @[email protected]
            link
            fedilink
            112 days ago

            That’s a valid point.

            There are two kinds of good serialization languages, the ones where values are black boxes and only serialize the data structure, and the ones where everything is completely determined and can be turned directly into an API.

            JSON is neither, but it’s closer to the first than YAML. XML is the first, while the SOAP standard almost turns it into the second. TOML is about as close to the first as JSON.

      • @[email protected]
        link
        fedilink
        English
        1
        edit-2
        12 days ago

        There’s a lot of JSON parsers that don’t mind to see comments there, just ignore them. And there’s also the “_comment” / “$comment” thing.

    • @[email protected]
      link
      fedilink
      512 days ago

      So Poe’s Law and all that… I really hope you’re being sarcastic because having non-technical people hand edit JSON is a nightmare. It’s also quite annoying to read without a lot of extra whitespace which most editors that’d help less technical folks omit… and comments to help highlight what different things mean are hacky, hard to read, and actually read as data.

      • @[email protected]
        link
        fedilink
        English
        112 days ago

        No, I’m kind of serious, the comment situation is already solved in JSON… about the rest yeah, Yaml might be easier but the different isn’t that much. Non tech people can’t edit Yaml properly either so.