mirror of
https://github.com/wallabag/wallabag.git
synced 2025-05-06 16:44:44 +00:00
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
import 'highlight.js/styles/atom-one-light.css';
|
|
import hljs from 'highlight.js';
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
this.element.querySelectorAll('pre code').forEach((element) => {
|
|
hljs.highlightElement(element);
|
|
});
|
|
}
|
|
}
|