aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2018-06-07 06:22:14 +0000
committerGitHub <noreply@github.com>2018-06-07 06:22:14 +0000
commit36054f5dd42413ed5877db8c50fe9f1a3c6167c6 (patch)
tree9fd9d3861231d72fa57594d9665f99ee749f584f /app
parentc00a69101902edfa35d8ef06e2f806cda21b9b27 (diff)
parentb2e7b8b6005b0f4493bfd69e6f0a981bd16f09d9 (diff)
downloadwallabag-36054f5dd42413ed5877db8c50fe9f1a3c6167c6.tar.gz
wallabag-36054f5dd42413ed5877db8c50fe9f1a3c6167c6.tar.zst
wallabag-36054f5dd42413ed5877db8c50fe9f1a3c6167c6.zip
Merge pull request #3636 from flozz/syntax-highlight
Highlight code in articles using highlight.js
Diffstat (limited to 'app')
-rw-r--r--app/Resources/static/themes/_global/index.js4
-rw-r--r--app/Resources/static/themes/_global/js/highlight.js8
2 files changed, 11 insertions, 1 deletions
diff --git a/app/Resources/static/themes/_global/index.js b/app/Resources/static/themes/_global/index.js
index b810e5d7..ae598e56 100644
--- a/app/Resources/static/themes/_global/index.js
+++ b/app/Resources/static/themes/_global/index.js
@@ -13,8 +13,10 @@ import './global.scss';
13import './js/shortcuts/entry'; 13import './js/shortcuts/entry';
14import './js/shortcuts/main'; 14import './js/shortcuts/main';
15 15
16import { savePercent, retrievePercent } from './js/tools'; 16/* Hightlight */
17import './js/highlight';
17 18
19import { savePercent, retrievePercent } from './js/tools';
18 20
19/* ========================================================================== 21/* ==========================================================================
20 Annotations & Remember position 22 Annotations & Remember position
diff --git a/app/Resources/static/themes/_global/js/highlight.js b/app/Resources/static/themes/_global/js/highlight.js
new file mode 100644
index 00000000..4025fc14
--- /dev/null
+++ b/app/Resources/static/themes/_global/js/highlight.js
@@ -0,0 +1,8 @@
1import 'highlight.js/styles/atom-one-light.css';
2import * as hljs from 'highlight.js';
3
4window.addEventListener('load', () => {
5 document.querySelectorAll('pre').forEach((node) => {
6 hljs.highlightBlock(node);
7 });
8});