Last active
March 10, 2021 15:31
-
-
Save jackkinsella/b6415e23a9304b41ea7799a26c8e7bf3 to your computer and use it in GitHub Desktop.
Revisions
-
jackkinsella revised this gist
Jul 19, 2016 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ for filename in edited/*.docx; do pandoc -s $filename -t markdown_mmd --extract-media "media-`$filename | cut -d- -f1-2`" --wrap=none --smart --normalize -o "`basename $filename .docx`".md done -
jackkinsella created this gist
Jul 19, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ for filename in edited/*.docx; do pandoc -s $filename -t markdown_mmd --extract-media media --wrap=none --smart --normalize -o "`basename $filename .docx`".md done