julianandrews / sgf-parse

SGF parsing library for Rust.
MIT License
14 stars 3 forks source link

Add support for writing SGFs from an iterable of SGFNodes #2

Closed julianandrews closed 4 years ago

julianandrews commented 4 years ago

Parsing is great, but there are a lot of use cases where writing SGFs would also be useful. It shouldn't be that hard to implement writing as long as we don't impose the constraint of writing the exact same text out as we read (which the specification doesn't require of applications).

julianandrews commented 4 years ago

This is now implemented on master. I'll need to create and publish a new release soon!