mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-04-30 02:01:41 -04:00
Better illustrated the CST format in the README.
This commit is contained in:
parent
1f1066e7b4
commit
1454754921
1 changed files with 5 additions and 1 deletions
|
@ -2,12 +2,16 @@
|
||||||
|
|
||||||
[](https://opensource.org/licenses/MIT) [](code_of_conduct.md)
|
[](https://opensource.org/licenses/MIT) [](code_of_conduct.md)
|
||||||
|
|
||||||
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. Any text which is not enclosed with carets is considered a comment and ignored. Neither strings nor comments may use the caret character.
|
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. (e.g. ``<key> ^<value>^``) Any text which is not enclosed with carets is considered a comment and ignored. Neither strings nor comments may use the caret character.
|
||||||
|
|
||||||
QuickFennec.CST is a library for parsing the CST format.
|
QuickFennec.CST is a library for parsing the CST format.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
```text
|
||||||
|
1 ^The quick brown fox jumps over the lazy dog.^
|
||||||
|
```
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
#r "nuget:CSTNet,1.0.1"
|
#r "nuget:CSTNet,1.0.1"
|
||||||
using System;
|
using System;
|
||||||
|
|
Loading…
Add table
Reference in a new issue