Fenced code block's info string is case sensitive for Typst

Apparently, the info string is case-sensitive for Typst language, but not for other languages, making some code blocks unhighlighted.

#let auto_include(include_list) = {
  for i in include_list [
    #if i != "" [
      #include i
    ]
  ]
}