From a09e3f74a202aa77a7a9d8de100c451ead4f3a8e Mon Sep 17 00:00:00 2001 From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in> Date: Wed, 11 Mar 2026 22:49:10 +0530 Subject: [PATCH 1/4] Add files via upload --- index.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 000000000..aa180d2e9 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + FOSSASIA + + + + + + + + From ce0f330dee7b5bf14c569e3fba86a87a3deb4040 Mon Sep 17 00:00:00 2001 From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in> Date: Wed, 11 Mar 2026 22:49:28 +0530 Subject: [PATCH 2/4] Add files via upload --- settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 settings.json diff --git a/settings.json b/settings.json new file mode 100644 index 000000000..e2798e426 --- /dev/null +++ b/settings.json @@ -0,0 +1,7 @@ +{ + "editor.codeActionsOnSave": { + "source.fixAll": "explicit", + "source.organizeImports": "explicit", + "source.sortMembers": "explicit" + } +} From 03802f4a3651bb5df14dd5cd973e02db9db77906 Mon Sep 17 00:00:00 2001 From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in> Date: Wed, 18 Mar 2026 14:34:57 +0530 Subject: [PATCH 3/4] Fix #2343: multiple Example headers highlighted and incorrect scroll behavior --- pages/understanding-json-schema/reference/non_json_data.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/understanding-json-schema/reference/non_json_data.md b/pages/understanding-json-schema/reference/non_json_data.md index 934ce089b..93da3b9ce 100644 --- a/pages/understanding-json-schema/reference/non_json_data.md +++ b/pages/understanding-json-schema/reference/non_json_data.md @@ -21,7 +21,7 @@ JSON schema has a set of [keywords](../../learn/glossary#keyword) to describe an The `contentMediaType` keyword specifies the media type of the content of a string, as described in [RFC 2046](https://tools.ietf.org/html/rfc2046). The Internet Assigned Numbers Authority (IANA) has officially registered [a comprehensive list of media types](http://www.iana.org/assignments/media-types/media-types.xhtml), but the set of supported types depends on the application and operating system. Mozilla Developer Network maintains a [shorter list of media types that are important for the web](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types) -### Example +### Example (Text Content) The following schema specifies a string containing an HTML file using the document's default encoding. @@ -56,7 +56,7 @@ There are two main scenarios: 2. **Binary data**: Set `contentEncoding` to `base64` and encode the content using Base64. This is appropriate for binary content types such as images (`image/png`) or audio files (`audio/mpeg`). -### Example +### Example (Binary Data) The following schema indicates that a string contains a PNG file and is encoded using Base64: From 1bb8ad451ffa84dbe04e10dd3faed2d1d6e5aefc Mon Sep 17 00:00:00 2001 From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in> Date: Wed, 18 Mar 2026 14:38:14 +0530 Subject: [PATCH 4/4] delete the file by default created by me --- index.html | 14 -------------- settings.json | 7 ------- 2 files changed, 21 deletions(-) delete mode 100644 index.html delete mode 100644 settings.json diff --git a/index.html b/index.html deleted file mode 100644 index aa180d2e9..000000000 --- a/index.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - FOSSASIA - - - - - - - - diff --git a/settings.json b/settings.json deleted file mode 100644 index e2798e426..000000000 --- a/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "editor.codeActionsOnSave": { - "source.fixAll": "explicit", - "source.organizeImports": "explicit", - "source.sortMembers": "explicit" - } -}