1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2025-01-08 04:19:15 +01:00
This commit is contained in:
scemama 2021-03-06 18:47:29 +00:00
parent 53843c894e
commit 601768aaae
4 changed files with 29 additions and 5098 deletions

2
.gitignore vendored
View File

@ -0,0 +1,2 @@
htmlize.el
index.html

View File

@ -2,9 +2,36 @@
;; https://emacs.stackexchange.com/questions/38437/org-mode-batch-export-missing-syntax-highlighting
(package-initialize)
(add-to-list 'package-archives
'("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(setq package-archive-priorities '(("melpa-stable" . 100)
("melpa" . 50)
("gnu" . 10)))
(require 'htmlize)
(require 'font-lock)
(require 'subr-x) ;; for `when-let'
(setq org-confirm-babel-evaluate nil)
(global-font-lock-mode t)
(org-babel-do-load-languages
'org-babel-load-languages
'(
(emacs-lisp . t)
(shell . t)
(python . t)
(C . t)
(org . t)
(makefile . t)
))
(unless (boundp 'maximal-integer)
(defconst maximal-integer (lsh -1 -1)

1882
htmlize.el

File diff suppressed because it is too large Load Diff

3216
index.html

File diff suppressed because it is too large Load Diff