summaryrefslogtreecommitdiff
path: root/gmi2html.sh
blob: 165e4c30f5325b8e8b2c2bdd1361d3331126cf30 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env sh

function err {
    echo "$@" >&2
}

if [ $# -ne 1 ]; then
    err "./gmi2html.sh /path/to/gmi"
    exit 1;
fi

# main method
GMI=$1
list=0
pre=0
quote=0

while read line; do
    # pre formatted text
    if [ -n "$(sed -nE '/^[`]{3}/p' <<< $line)" ]; then
	if [ $pre -eq 0 ]; then
	    echo "<pre>"
	    pre=1
	else
	    echo "</pre>"
	    pre=0
	fi
	continue;
    fi
    if [ $pre -eq 1 ]; then
	echo "$line"
	continue;
    fi

    # lists
    if [ -n "$(sed -nE '/^[*] .+/p' <<< "$line")" ]; then
	if [ $list -eq 0 ]; then
	    echo "<ul>"
	fi
       	list=1;
	text=$(sed -E 's/^[*] (.+)$/\1/g' <<< "$line")
	echo "<li>${text}</li>"
	continue
    else
	if [ $list -eq 1 ]; then
	    echo "</ul>"
	fi
	list=0;
    fi

    # quotes
    if [ -n "$(sed -nE '/^[>] .+/p' <<< $line)" ]; then
	if [ $quote -eq 0 ]; then
	    echo "<figure><blockquote>"
	fi
       	quote=1;
	text=$(sed -E 's/^[>] (.+)$/\1/g' <<< $line)
	echo "$text"
	continue
    else
	if [ $quote -eq 1 ]; then
	    echo "</blockquote></figure>"
	fi
	quote=0;
    fi

    # single line modifiers
    if [ -n "$(sed -nE '/^# .+/p' <<< $line)" ]; then
	text=$(sed -E 's/^# (.+)$/\1/g' <<< $line)
	echo "<h1>$text</h1>"
	continue
    fi
    if [ -n "$(sed -nE '/^## .+/p' <<< $line)" ]; then
	text=$(sed -E 's/^## (.+)$/\1/g' <<< $line)
	echo "<h2>$text</h2>"
	continue
    fi
    if [ -n "$(sed -nE '/^### .+/p' <<< $line)" ]; then
	text=$(sed -E 's/^### (.+)$/\1/g' <<< $line)
	echo "<h3>$text</h3>"
	continue
    fi
    if [ -n "$(sed -nE '/^=> .+/p' <<< "$line")" ]; then
	href=$(sed -E 's/^=> ([^ ]+)([ ]?.*)/\1/g' <<< "$line")
	if [ -n "$(sed -nE '/^=> [^ ]+ .+$/p' <<< "$line")" ]; then
	    text=$(sed -E 's/^=> [^ ]+ (.+)$/\1/g' <<< "$line")
	else
	    text=$href
	fi

	echo "<p><a href='${href}' rel='noopener' target='_blank'>$text</a></p>"
	continue
    fi

    # skip blank lines
    if [ -z "$line" ]; then
	continue
    fi
    # default paragraphs
    echo "<p>$line</p>"
done < $GMI