Git Product home page Git Product logo

Comments (3)

moraes avatar moraes commented on August 26, 2024

I created a version of gypsy that uses goyaml (the pure go version) for parsing:

https://github.com/moraes/yaml

It parses and renders multi-line strings correctly.

from go-gypsy.

eaigner avatar eaigner commented on August 26, 2024

Here is an example that illustrates broken nested multi-line scalars

package main

import (
    "fmt"
    "github.com/kylelemons/go-gypsy/yaml"
)

var x = `
a:
  b: |
    multi
    line
  c: |
    another
    string
`

func main() {
    c := yaml.Config(x)
    fmt.Println(c.Require("a.b"))
    fmt.Println(c.Require("a.c"))
}

It will result in a panic

panic: yaml: a.c: "a.c" not found

Everything after the first scalar is not parsed

from go-gypsy.

kylelemons avatar kylelemons commented on August 26, 2024

I would actually be surprised if multi-line strings worked at all; they're not implemented, and are the subject of the BUG in the godoc :).

At this point I think there are probably better Go solutions for when you need more than the simple subset of yaml that gypsy supports. Pull requests welcome, though, if you can figure out how to add it... Closing for now, though.

from go-gypsy.

Related Issues (10)

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.