This viewset automatically provides `list`, `create`, `retrieve`,
`update` and `destroy` actions.

Additionally we also provide an extra `highlight` action.

GET /api/v1/snippets/?format=api&page=2
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 12,
    "next": null,
    "previous": "http://demo.scanapi.dev/api/v1/snippets/?format=api",
    "results": [
        {
            "url": "http://demo.scanapi.dev/api/v1/snippets/718/?format=api",
            "id": 718,
            "highlight": "http://demo.scanapi.dev/api/v1/snippets/718/highlight/?format=api",
            "owner": "tacho",
            "title": "Hello World",
            "code": "print('hello world')",
            "linenos": false,
            "language": "python",
            "style": "xcode"
        },
        {
            "url": "http://demo.scanapi.dev/api/v1/snippets/724/?format=api",
            "id": 724,
            "highlight": "http://demo.scanapi.dev/api/v1/snippets/724/highlight/?format=api",
            "owner": "cumbuquita_ao_vivo",
            "title": "Hello World",
            "code": "print('hello world')",
            "linenos": false,
            "language": "python",
            "style": "xcode"
        }
    ]
}