Giter Site home page Giter Site logo

Comments (11)

chyh1990 avatar chyh1990 commented on September 2, 2024

Will 2d6a83d be enough?

from yaml-rust.

antoyo avatar antoyo commented on September 2, 2024

I'll make some tests to check if trim() is needed.
Thanks.

from yaml-rust.

antoyo avatar antoyo commented on September 2, 2024

I made some tests and quotes are also needed for a string with only spaces.
So I don't know exactly how it is parsed, but perhaps quotes are also needed when there are spaces at the start/end of a string.
In any case, your commit is not sufficient:
the case of a string like " " will be emitted without quotes and the parser will try to parse it as a Unit.

from yaml-rust.

chyh1990 avatar chyh1990 commented on September 2, 2024

I found a reference implementation here: https://github.com/adamkiss/LibYAML/blob/master/yaml/Escaper.php

We are also missing the single quoted part.

I think adding TAB and SPACE to the require quoted character is OK.

from yaml-rust.

antoyo avatar antoyo commented on September 2, 2024

I don't think adding SPACE to the required character is what we want.
For instance, if we have the string "my string", it can be emitted without quotes in YAML.
I don't know the precise rules about the spaces however. Do we need quotes when the string starts/ends with space?

from yaml-rust.

chyh1990 avatar chyh1990 commented on September 2, 2024

Yeah, I get your point. But I think quoting something like "my string" is not a bad idea (the php version do this) and more robust. I'm not sure whether just quoting string starts/ends with space will introduce some corner cases?

from yaml-rust.

dtolnay avatar dtolnay commented on September 2, 2024

I would strongly prefer not to quote strings unless necessary, even if it means we need to iterate on the heuristic a few times to get it right. Quoting for leading/trailing whitespace seems like a good start.

from yaml-rust.

chyh1990 avatar chyh1990 commented on September 2, 2024

It looks good e52b058 ?

from yaml-rust.

dtolnay avatar dtolnay commented on September 2, 2024

e52b058: No need to check for starts_with or ends_with '\t' because any string containing '\t' anywhere will be quoted. Just check for ' '.

from yaml-rust.

antoyo avatar antoyo commented on September 2, 2024

A style comment:
no need to use return in the last statement: just omit the semi-colon.

from yaml-rust.

chyh1990 avatar chyh1990 commented on September 2, 2024

Closed by #46

from yaml-rust.

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.