Skip to content

Commit 5629824

Browse files
committed
-g flag is not required for pygments
When -l flag is being provided. Closes #162.
1 parent 5df8268 commit 5629824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v6/orgmode/init.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
(insert code)
5555
(let ((lang (or (cdr (assoc lang org-pygments-language-alist)) "text")))
5656
(shell-command-on-region (point-min) (point-max)
57-
(format "pygmentize -f html -g -l %s" lang)
57+
(format "pygmentize -f html -l %s" lang)
5858
(buffer-name) t))
5959

6060
(buffer-string)))

0 commit comments

Comments
 (0)