@@ -105,7 +105,7 @@ media type in your Accept header. For example, via curl, the above query would
105105look like this:
106106
107107curl -H 'Accept: application/vnd.github.v3.text-match+json' \
108- https://api.github.com/search/repositories?q=tetris+language:assembly&sort=stars&order=desc
108+ ' https://api.github.com/search/repositories?q=tetris+language:assembly&sort=stars&order=desc'
109109
110110This produces the same JSON payload as above, with an extra key called
111111` text_matches ` , an array of objects. These objects provide information such as
@@ -287,7 +287,7 @@ media type in your Accept header. For example, via curl, the above query would
287287look like this:
288288
289289curl -H 'Accept: application/vnd.github.v3.text-match+json' \
290- https://api.github.com/search/issues?q=windows+label:bug+language:python+state:open&sort=created&order=asc
290+ ' https://api.github.com/search/issues?q=windows+label:bug+language:python+state:open&sort=created&order=asc'
291291
292292This produces the same JSON payload as above, with an extra key called
293293` text_matches ` , an array of objects. These objects provide information such as
@@ -405,7 +405,7 @@ Using curl, and the [example issue search](#issue-search-example) above, our API
405405request would look like this:
406406
407407curl -H 'Accept: application/vnd.github.v3.text-match+json' \
408- https://api.github.com/search/issues?q=windows+label:bug+language:python+state:open&sort=created&order=asc
408+ ' https://api.github.com/search/issues?q=windows+label:bug+language:python+state:open&sort=created&order=asc'
409409
410410The response will include a` text_matches ` array for each search result. In the
411411JSON below, we have two objects in the` text_matches ` array.