Files
fizzy/app/javascript/controllers/syntax_highlight_controller.js
T
2025-05-23 13:25:07 +02:00

9 lines
180 B
JavaScript

import { Controller } from "@hotwired/stimulus"
import { highlightAll } from "actiontext-lexical"
export default class extends Controller {
connect() {
highlightAll()
}
}