From ae4c3e8ce371968d5121bd2c5260e85fa68bd29f Mon Sep 17 00:00:00 2001 From: ryangreenup Date: Tue, 21 Jul 2020 00:59:54 +1000 Subject: [PATCH] Fixed Org 2 Markdown Conversion --- bin/cadmus | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cadmus b/bin/cadmus index 6e241ee..6de4f14 100755 --- a/bin/cadmus +++ b/bin/cadmus @@ -529,7 +529,7 @@ CadmusConvert () { while test $# -gt 0 do case "$1" in - org2md) shift; xclip -selection clipboard -o | pandoc -f org -t markdown | xclip -selection clipboard && exit + org2md) shift; xclip -selection clipboard -o | pandoc -f org -t markdown_github+tex_math_dollars --atx-headers | xclip -selection clipboard && exit ;; md2org) shift; xclip -selection clipboard -o | pandoc -f markdown_github+tex_math_dollars --atx-headers -t org | xclip -selection clipboard && exit ;;