GithubHelp home page GithubHelp logo

Comments (5)

laktak avatar laktak commented on September 1, 2024 1

@ysmood @leviwheatcroft this is now supported in 3.0.0.

from hjson-js.

laktak avatar laktak commented on September 1, 2024

You can do this with DSF as long as you use a new line for each value:

var Hjson=require("hjson");

var sampleText=`
{
  test: 'single quoted string'
}
`;

var sq={
  name: "singleQuotes",
  parse: function (value) {
    if (/^'.*'$/.test(value))
      return value.substr(1, value.length-2);
  },
  stringify: function (value) {},
};

var res=Hjson.parse(sampleText, { dsf: [ sq ] });
console.log(res.test);

from hjson-js.

ysmood avatar ysmood commented on September 1, 2024

That's great. Thanks!

from hjson-js.

leviwheatcroft avatar leviwheatcroft commented on September 1, 2024

@laktak in #65 you explained the reluctance to include single quotes, which is fine. But I think this should be mentioned somewhere, particularly in your javascript readme.. because it seems to me like a problem that people will inevitably run into. hjson is for humans to use, and javascript type humans are used to using quotes and apostrophe's interchangeably.

As an example... I've been staring at this error for a few hours

hint: 'found '}' in a string value, your mistake could be with:\n > 'fill' }\n (unquoted strings contain everything up to the next line!)' }

I thought the problem was that the string being parsed had been escaped somehow, but only now I realise that the problem is the use of single quotes.

from hjson-js.

laktak avatar laktak commented on September 1, 2024

@leviwheatcroft you should see a better error message online/with 2.4.2.

from hjson-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.