Is there a possibility to highlight GraphQL code with pygments? Github also supports Schema definitions and queries: ```graphql type Character { name: String! appearsIn: [Episode!]! } ``` ```graphql query { hero { name } droid(id: "2000") { name } } ```