csharpfritz / TAML

Defining the coolest and simplest markup language delimited ONLY by tabs
MIT License
23 stars 11 forks source link

Need a converter to go from TAML to YAML #42

Open csharpfritz opened 3 years ago

csharpfritz commented 3 years ago

The reverse of #12

cgleadall commented 3 years ago

This is "just" an interpreter that takes a TamlDocument as input and produces string output?

public static string TamlToYaml(TamlDocument tamlDocument);

I suppose future work would be TamlToYaml(Stream tamlStream, Stream yamlStream);

cgleadall commented 3 years ago

I have done a little work on this, thanks for the "pattern matching" help during the TS/JS livestream today.

PR 81 (https://github.com/csharpfritz/TAML/pull/81) is ready for comments.