Files
fizzy/app/javascript/controllers/syntax_highlight_controller.js
T
2025-05-29 14:25:16 +02:00

9 lines
180 B
JavaScript

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