-
Notifications
You must be signed in to change notification settings - Fork 15
/
opml2mmd
executable file
·51 lines (44 loc) · 1.14 KB
/
opml2mmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
# Assign help text to variable for user later
HELP="Usage: opml2mmd [SOURCE] [DEST]"
NUMPARAMS="Error: Incorrect number of parameters"
# If the user supplied no parameters, then provide help text
if [ "$#" -eq 0 ]; then
echo $NUMPARAMS
echo
echo $HELP
echo
exit
fi
# If the user supplied "--help", then provide help text
if [ "$1" = "--help" ]; then
echo $HELP
echo
exit
fi
# Ensure that exactly 2 parameters were given
# Display error message and help text otherwise
if [ "$#" -ne 2 ]; then
echo $NUMPARAMS
echo
echo $HELP
echo
exit
fi
# Check that source exists and is a normal file
# Display error message otherwise
if [ ! -f "$1" ]; then
echo "Error: invalid source file supplied"
echo
exit
fi
# Assign parameters to variables for use later
SRC="$1"
DST="$2"
# Use pandoc to convert OPML to MMD (assumes pandoc is in the search path);
# then use sed to transform the document
pandoc --from=opml --to=markdown_mmd --atx-headers "$SRC" | \
sed -e 's/^## /* /g' | \
sed -e 's/^### / * /g' | \
sed -e 's/^#### / * /g' | \
sed -e 's/^##### / * /g' > "$DST"