Browse Source

Formatting

Brad Robinson 11 years ago
parent
commit
8a434373f5
1 changed files with 6 additions and 0 deletions
  1. 6 0
      readme.md

+ 6 - 0
readme.md

@@ -433,12 +433,18 @@ The IJsonWriter interface writes to the Json output stream:
 
 
 *WriteStringLiteral* - writes a string literal to the output stream, including the surrounding quotes and
 *WriteStringLiteral* - writes a string literal to the output stream, including the surrounding quotes and
  escaping the content as required.
  escaping the content as required.
+
 *WriteRaw* - writes directly to the output stream.  Use for comments, or self genarated Json data.
 *WriteRaw* - writes directly to the output stream.  Use for comments, or self genarated Json data.
+
 *WriteArray* - writes an array to the output stream.  The callback should write each element.
 *WriteArray* - writes an array to the output stream.  The callback should write each element.
+
 *WriteDictionary* - writes a dictionary to the output stream.  The callback should write each element.
 *WriteDictionary* - writes a dictionary to the output stream.  The callback should write each element.
+
 *WriteValue* - formats and writes any object value.
 *WriteValue* - formats and writes any object value.
+
 *WriteElement* - call from the callback of WriteArray to indicate that the next element is about to be 
 *WriteElement* - call from the callback of WriteArray to indicate that the next element is about to be 
 written.  Causes PetaJson to write separating commas and whitespace.
 written.  Causes PetaJson to write separating commas and whitespace.
+
 *WriteKey* - call from the callback of WriteDictionary to write the key part of the next element.  Writes
 *WriteKey* - call from the callback of WriteDictionary to write the key part of the next element.  Writes
 whitespace, separating commas, the key and it's quotes, the colon.
 whitespace, separating commas, the key and it's quotes, the colon.