From: Fletcher T. Penney Date: Thu, 27 Jul 2017 00:20:51 +0000 (-0400) Subject: FIXED: Remove useless RTF scripts X-Git-Tag: 6.2.0^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=693400be439abf067601a0c56c00b2d7468c3cac;p=multimarkdown FIXED: Remove useless RTF scripts --- diff --git a/scripts/mmd2rtf b/scripts/mmd2rtf deleted file mode 100755 index 2cf68b8..0000000 --- a/scripts/mmd2rtf +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# mmd2rtf --- MultiMarkdown convenience script -# -# 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 diff --git a/scripts/mmd2rtf.bat b/scripts/mmd2rtf.bat deleted file mode 100755 index 42f293f..0000000 --- a/scripts/mmd2rtf.bat +++ /dev/null @@ -1,8 +0,0 @@ -@ECHO OFF -:Loop -IF "%1"=="" GOTO Continue - "%~dp0\multimarkdown" -b -t rtf "%1" -SHIFT -GOTO Loop -:Continue -