Update lexxy to 0.9.5.beta (#2820)

* Update lexxy to 0.9.5.beta

* Fix syntax highlight controller for lexxy 0.9.5.beta

The highlightAll export was renamed to highlightCode.

---------

Co-authored-by: Mike Dalessio <mike@37signals.com>
This commit is contained in:
Jorge Manrubia
2026-04-09 19:06:59 +02:00
committed by GitHub
parent 69daae79f1
commit 1c6141c131
4 changed files with 13 additions and 13 deletions
@@ -1,8 +1,8 @@
import { Controller } from "@hotwired/stimulus"
import { highlightAll } from "lexxy"
import { highlightCode } from "lexxy"
export default class extends Controller {
connect() {
highlightAll()
highlightCode()
}
}