Skip to content

Commit

Permalink
Merge pull request #33 from juergenhoetzel/fix_markdown_extensions
Browse files Browse the repository at this point in the history
Fix check for markdown syntax-extensions
  • Loading branch information
kawabata committed Jul 6, 2017
2 parents 7c9c5a2 + 5f032dd commit 1dd4370
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ox-pandoc.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

;;; Code:

(eval-when-compile
(require 'cl))
(require 'ox-org)
(require 'dash)
(require 'ht)
Expand Down Expand Up @@ -1630,7 +1632,7 @@ OPTIONS is a hashtable. It runs asynchronously."
format)))
(args
`("-f" "org"
"-t" ,(if (string-match output-format "^markdown")
"-t" ,(if (string-match "^markdown" output-format)
(concat output-format org-pandoc-markdown-extension)
output-format)
,@(and output-file
Expand Down

0 comments on commit 1dd4370

Please sign in to comment.