How to set linenos in config.toml?

I’ve set pygmentsOptions = "linenos=table" but failed to add row numbers to code block. How can I fix with it? Thanks.
Here’s my pygments options.

pygmentsCodefencesGuessSyntax = true
pygmentsCodefences  = true
pygmentsUseClasses  = true
pygmentsOptions = "linenos=table" # I also tried pygmentsOptions=["linenos=table"]

Googleling around it should be something like:

pygmentsOptions = "linenos=true"

(true or table)

Maybe it’s a cache issue?

not working :sweat_smile: How can I fix it if it’s cache issue?