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
|
package gmi
import (
"bufio"
"errors"
"fmt"
"io"
"log"
"path"
"regexp"
"strings"
)
func hasImgExt(p string) bool {
switch path.Ext(strings.ToLower(p)) {
case ".jpg", ".jpeg", ".png", ".gif", ".svg":
return true
default:
return false
}
}
// matches `=> dstURL [optional description]`
var linkRegexp = regexp.MustCompile(`^=>\s+(\S+)\s*(.*?)\s*$`)
// GemtextToMarkdown reads a gemtext formatted body from the Reader and writes
// the markdown version of that body to the Writer.
func GemtextToMarkdown(dst io.Writer, src io.Reader) error {
bufSrc := bufio.NewReader(src)
for {
line, err := bufSrc.ReadString('\n')
if err != nil && !errors.Is(err, io.EOF) {
return fmt.Errorf("reading: %w", err)
}
last := err == io.EOF
if match := linkRegexp.FindStringSubmatch(line); len(match) > 0 {
isImg := hasImgExt(match[1])
descr := match[2]
if descr != "" {
// ok
} else if isImg {
descr = "Image"
} else {
descr = "Link"
}
log.Printf("descr:%q", descr)
line = fmt.Sprintf("[%s](%s)\n", descr, match[1])
if isImg {
line = "!" + line
}
}
if _, err := dst.Write([]byte(line)); err != nil {
return fmt.Errorf("writing: %w", err)
}
if last {
return nil
}
}
}
|