-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Ion 1.1 Text Encoding | ||
|
||
The Ion text encoding is a stream of UTF-8 encoded text. | ||
It is intended to be easy to read and write by humans in any text-based application. | ||
It is intended to be easy to read and write by humans. | ||
|
||
Whitespace is insignificant and is only required where necessary to separate tokens, and C-style comments | ||
(either block or in-line) are treated as whitespace (and are not part of the binary encoding). | ||
Whitespace is insignificant and is only required where necessary to separate tokens. | ||
C-style comments (either block or in-line) are treated as whitespace; | ||
they are not part of the data model and implementations are not required to preserve them. | ||
|
||
A text Ion 1.1 stream begins with the Ion 1.1 [version marker](../todo.md) (`$ion_1_1`) followed by a series of | ||
[value literals](values.md) and/or [encoding expressions](e_expressions.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters