alexwforsythe / code-blocks

Syntax highlighting for Google Docs
https://www.alexwforsythe.com/code-blocks/
MIT License
698 stars 88 forks source link

Kotlin code formatting doesn't recognize backtick identifiers #152

Closed AnmAtAnm closed 3 years ago

AnmAtAnm commented 4 years ago

For the kotlin code:

 @Test
 fun `reverse() should reverse item order`() {
   assertEquals(listOf(1,2,3).reversed(), listOf(3,2,1))
 }

I expected: image

but got: image

See "Names for test methods" under Naming Rules.

alexwforsythe commented 3 years ago

From the README:

If you'd like to see Code Blocks update or fix support for an existing language:

  1. Check if the latest version of highlight.js already includes the update. If it does, submit a PR to this repository that bumps the highlight.js version in package.json.
  2. If highlight.js does not yet include the update, please submit an issue on their issue tracker.