Skip to content

Commit 1cc45a9

Browse files
authored
Merge branch 'main' into first-version
2 parents be59f51 + f360486 commit 1cc45a9

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ We agree to restrict the following behaviors in our community. Instances, threat
4343

4444
Tensions can occur between community members even when they are trying their best to collaborate. Not every conflict represents a code of conduct violation, and this Code of Conduct reinforces encouraged behaviors and norms that can help avoid conflicts and minimize harm.
4545

46-
When an incident does occur, it is important to report it promptly. To report a possible violation, **[NOTE: describe your means of reporting here.]**
46+
When an incident does occur, it is important to report it promptly. To report a possible violation, please contact Johann Schopplich directly at hello@johannschopplich.com.
4747

4848
Community Moderators take reports of violations seriously and will make every effort to respond in a timely manner. They will investigate all reports of code of conduct violations, reviewing messages, logs, and recordings, or interviewing witnesses and other participants. Community Moderators will keep investigation and enforcement actions as transparent as possible while prioritizing safety and confidentiality. In order to honor these values, enforcement actions are carried out in private with the involved parties, but communicating to the whole community may be part of a mutually agreed upon resolution.
4949

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ We support Python 3.11 through 3.14t (including free-threaded Python).
6464

6565
## SPEC Compliance
6666

67-
All implementations must comply with the [TOON specification](https://github.com/johannschopplich/toon/blob/main/SPEC.md).
67+
All implementations must comply with the [TOON specification](https://github.com/toon-format/spec/blob/main/SPEC.md).
6868

6969
Before submitting changes that affect encoding/decoding behavior:
7070
1. Verify against the official SPEC.md

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,12 @@ print(toon_str)
149149

150150
Converts a TOON-formatted string back to Python values.
151151

152-
**Parameters:**
153-
- `input_str` (str): TOON-formatted string to parse
154-
- `options` (DecodeOptions, optional): Decoding options
152+
153+
- [TOON Specification](https://github.com/toon-format/spec/blob/main/SPEC.md)
154+
- [Main Repository](https://github.com/toon-format/toon)
155+
- [Benchmarks & Performance](https://github.com/toon-format/toon#benchmarks)
156+
- [Other Language Implementations](https://github.com/toon-format/toon#other-implementations)
157+
155158

156159
**Returns:** Python value (dict, list, or primitive)
157160

@@ -173,12 +176,6 @@ print(data)
173176

174177
```python
175178
from toon_format import encode
176-
177-
encode(data, {
178-
"indent": 2, # Spaces per indentation level (default: 2)
179-
"delimiter": ",", # Delimiter for arrays: "," | "\t" | "|" (default: ",")
180-
"lengthMarker": "#" # Optional marker prefix: "#" | False (default: False)
181-
})
182179
```
183180

184181
### Decoding Options

0 commit comments

Comments
 (0)