mongodb / specifications

Specifications related to MongoDB
http://specifications.readthedocs.io/en/latest
Other
389 stars 242 forks source link

Improve rendering for bulk write JSON-like blocks #1583

Closed isabelatkinson closed 5 months ago

isabelatkinson commented 5 months ago

json code blocks don't render nicely in github when their contents aren't valid JSON, e.g.:

InsertOne {
   "namespace": "db.coll",
   "document": { "a": <int32> },
}

This PR ports them to javascript blocks, which look better:

InsertOne {
   "namespace": "db.coll",
   "document": { "a": <int32> },
}

Please complete the following before merging: