ikayzo / SDL

The Simple Declarative Language provides an easy way to describe lists, maps, and trees of typed data in a compact, easy to read representation. The simple and intuitive API allows you to read, write, and access all the datastructures using a single class. For property files, configuration files, logs, and simple serialization requirements, SDL provides a compelling alternative to XML and Properties files. Implementations are available for Java and .NET with more languages on the way.
http://sdl.ikayzo.org/docs
14 stars 4 forks source link

bug with tag names #4

Open SingingBush opened 7 years ago

SingingBush commented 7 years ago

I came across this whilst fixing #3

According to sdlang.org this should parse:

// Tags may contain certain non-alphanumeric characters
this-is_a.valid$tag-name

but it doesn't like the . in the tag name as it's one of the chars being checked for a number value.

SingingBush commented 7 years ago

this is fixed in my fork