Skip to content

Commit 1959633

Browse files
committed
Make file names bold
1 parent 28efdb4 commit 1959633

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,52 +21,52 @@ package.
2121
The package compiles on Java 1.6-1.8.
2222

2323

24-
`JSONObject.java`: The `JSONObject` can parse text from a `String` or a `JSONTokener`
24+
**JSONObject.java**: The `JSONObject` can parse text from a `String` or a `JSONTokener`
2525
to produce a map-like object. The object provides methods for manipulating its
2626
contents, and for producing a JSON compliant object serialization.
2727

28-
`JSONArray.java`: The `JSONArray` can parse text from a String or a `JSONTokener`
28+
**JSONArray.java**: The `JSONArray` can parse text from a String or a `JSONTokener`
2929
to produce a vector-like object. The object provides methods for manipulating
3030
its contents, and for producing a JSON compliant array serialization.
3131

32-
`JSONTokener.java`: The `JSONTokener` breaks a text into a sequence of individual
32+
**JSONTokener.java**: The `JSONTokener` breaks a text into a sequence of individual
3333
tokens. It can be constructed from a `String`, `Reader`, or `InputStream`.
3434

35-
`JSONException.java`: The `JSONException` is the standard exception type thrown
35+
**JSONException.java**: The `JSONException` is the standard exception type thrown
3636
by this package.
3737

38-
`JSONPointer.java`: Implementation of
38+
**JSONPointer.java**: Implementation of
3939
[JSON Pointer (RFC 6901)](https://tools.ietf.org/html/rfc6901). Supports
4040
JSON Pointers both in the form of string representation and URI fragment
4141
representation.
4242

43-
`JSONString.java`: The `JSONString` interface requires a `toJSONString` method,
43+
**JSONString.java**: The `JSONString` interface requires a `toJSONString` method,
4444
allowing an object to provide its own serialization.
4545

46-
`JSONStringer.java`: The `JSONStringer` provides a convenient facility for
46+
**JSONStringer.java**: The `JSONStringer` provides a convenient facility for
4747
building JSON strings.
4848

49-
`JSONWriter.java`: The `JSONWriter` provides a convenient facility for building
49+
**JSONWriter.java**: The `JSONWriter` provides a convenient facility for building
5050
JSON text through a writer.
5151

5252

53-
`CDL.java`: `CDL` provides support for converting between JSON and comma
53+
**CDL.java**: `CDL` provides support for converting between JSON and comma
5454
delimited lists.
5555

56-
`Cookie.java`: `Cookie` provides support for converting between JSON and cookies.
56+
**Cookie.java**: `Cookie` provides support for converting between JSON and cookies.
5757

58-
`CookieList.java`: `CookieList` provides support for converting between JSON and
58+
**CookieList.java**: `CookieList` provides support for converting between JSON and
5959
cookie lists.
6060

61-
`HTTP.java`: `HTTP` provides support for converting between JSON and HTTP headers.
61+
**HTTP.java**: `HTTP` provides support for converting between JSON and HTTP headers.
6262

63-
`HTTPTokener.java`: `HTTPTokener` extends `JSONTokener` for parsing HTTP headers.
63+
**HTTPTokener.java**: `HTTPTokener` extends `JSONTokener` for parsing HTTP headers.
6464

65-
`XML.java`: `XML` provides support for converting between JSON and XML.
65+
**XML.java**: `XML` provides support for converting between JSON and XML.
6666

67-
`JSONML.java`: `JSONML` provides support for converting between JSONML and XML.
67+
**JSONML.java**: `JSONML` provides support for converting between JSONML and XML.
6868

69-
`XMLTokener.java`: `XMLTokener` extends JSONTokener for parsing XML text.
69+
**XMLTokener.java**: `XMLTokener` extends JSONTokener for parsing XML text.
7070

7171
Unit tests are maintained in a separate project. Contributing developers can test
7272
JSON-java pull requests with the code in this project:

0 commit comments

Comments
 (0)