FIXED: Remove useless RTF scripts

This commit is contained in:
Fletcher T. Penney 2017-07-26 20:20:51 -04:00
parent 78ab69648a
commit 693400be43
2 changed files with 0 additions and 42 deletions

View File

@ -1,34 +0,0 @@
#!/bin/sh
#
# mmd2rtf --- MultiMarkdown convenience script
# <http://fletcherpenney.net/multimarkdown/>
# Fletcher T. Penney
#
# Pass arguments on to the binary to convert text to OpenDocument
#
# NOTE: MultiMarkdown's RTF support is limited at best. If you find
# something that isn't working properly, submit code for a proposed
# fix via github or email. But don't just send a message letting me
# know it isn't working. ;)
#
# Be sure to include multimarkdown in our PATH
export PATH="$PWD:/usr/local/bin:$PATH"
which multimarkdown > /dev/null
if [ $? = 1 ]
then
echo multimarkdown executable not found! >&2
exit 1
fi
if [ $# = 0 ]
then
multimarkdown -t rtf
else
until [ "$*" = "" ]
do
multimarkdown -b -t rtf "$1"
shift
done
fi

View File

@ -1,8 +0,0 @@
@ECHO OFF
:Loop
IF "%1"=="" GOTO Continue
"%~dp0\multimarkdown" -b -t rtf "%1"
SHIFT
GOTO Loop
:Continue