5 lines
124 B
Text
5 lines
124 B
Text
|
#!/bin/bash
|
||
|
# Call pandoc on a .md file to produce a .org file
|
||
|
|
||
|
pandoc --wrap=none -f markdown -t org -o "${1%.*}.org" "$1"
|