forked from fletcher/MultiMarkdown-5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial configuration of MMD-4 using c-template
- Loading branch information
Showing
65 changed files
with
13,142 additions
and
104 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "submodules/greg"] | ||
path = submodules/greg | ||
url = https://github.com/nddrylliog/greg.git | ||
[submodule "submodules/MarkdownTest"] | ||
path = submodules/MarkdownTest | ||
url = https://github.com/fletcher/MMD-Test-Suite.git |
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# mmd --- MultiMarkdown convenience script | ||
# <http://fletcherpenney.net/multimarkdown/> | ||
# Fletcher T. Penney | ||
# | ||
# Pass arguments on to the binary to convert text to XHTML | ||
# | ||
|
||
# Be sure to include multimarkdown in our PATH | ||
export PATH="/usr/local/bin:$PATH" | ||
|
||
if [ $# = 0 ] | ||
then | ||
multimarkdown -c | ||
else | ||
until [ "$*" = "" ] | ||
do | ||
multimarkdown -c -b "$1" | ||
shift | ||
done | ||
fi |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@ECHO OFF | ||
:Loop | ||
IF "%1"=="" GOTO Continue | ||
"%~dp0\multimarkdown" -c -b %1 | ||
SHIFT | ||
GOTO Loop | ||
:Continue | ||
|
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# mmd --- MultiMarkdown convenience script | ||
# <http://fletcherpenney.net/multimarkdown/> | ||
# Fletcher T. Penney | ||
# | ||
# Pass arguments on to the binary to convert text to XHTML | ||
# | ||
|
||
# Be sure to include multimarkdown in our PATH | ||
export PATH="/usr/local/bin:$PATH" | ||
|
||
if [ $# = 0 ] | ||
then | ||
multimarkdown | ||
else | ||
until [ "$*" = "" ] | ||
do | ||
multimarkdown -b "$1" | ||
shift | ||
done | ||
fi |
Oops, something went wrong.