cstdotnet/README.md
Tony Bark 0dce5e27ea Migrated CST notebook from .NET Labs
- Added code of conduct
- Updated README with requirements
2020-12-08 18:46:52 -05:00

1.2 KiB

CST.NET

License: MIT Contributor Covenant

Caret-Separated Text (or CST) is a key-value pair format represented by numbers or words as keys and the value is the string enclosed between carets (^) that contains the contents. CST.NET is a library for parsing the CST format.

Example

using System;
using System.IO;
using CSTNet;

var file = File.ReadAllText("example.cst");
var example = CaretSeparatedText.Parse(file, 1);

Console.WriteLine(example);

To-do

  • Support for arguments (e.g. %1)

Requirements

Prerequisites

License

I license this project under the MIT license - see LICENSE for details.