David Vo

Results 309 comments of David Vo

Have you tried using [github-syntax-theme-generator](https://github.com/primer/github-syntax-theme-generator)?

Looks like there's [a Pygments port](https://github.com/daveyarwood/gruvbox-pygments) already.

I guess this one is simple enough. ``` python print('This here is a string.') ```

This isn't an issue with the themes themselves, rather, it's an issue with selecting elements incorrectly.

Guess GitHub might've changed the classes on us. It wouldn't be the first time. Could we contact them and see what else has changed since then? `.pl-s` is almost definitely...

Sounds like the `highlight-` class names are now based on the scope names listed in [grammars.yml](https://github.com/github/linguist/blob/master/grammars.yml) and/or [lib/linguist/languages.yml](https://github.com/github/linguist/blob/master/lib/linguist/languages.yml) in github/linguist.

Hmm. I found a case where `.pl-s1` is used now. Shell sessions: ``` console $ echo 'Hello, World!' Hello, World! $ cat file.txt This is a random file. ``` [Here](https://github.com/atom/language-shellscript/blob/master/grammars/shell-session.cson)...

Guess it is. Here's some more `.pl-s1`, this time Literate Haskell: ``` lhs Test 1: \begin{code} module Main where main = putStrLn "Hello, World!" \end{code} Test 2: > module Main...

FYI, [here](//github.com/github/linguist/issues/1822#issuecomment-66510457)'s another old reference mapping of scopes to CSS class names.

I found [sindresorhus/github-markdown-css](/sindresorhus/github-markdown-css) today. The commit history might be interesting/useful.