Files
fizzy/app/javascript/controllers/syntax_highlight_controller.js
T
Jorge Manrubia 5b5c698af7 Rename Action Text Lexical => Lexxy
 Conflicts:
	app/assets/stylesheets/terminals.css
2025-08-26 08:25:19 +02:00

9 lines
167 B
JavaScript

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