mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-12-28 14:40:16 +00:00
Update go-gemini dependency
This commit is contained in:
parent
1c640990a2
commit
5bdbb822e3
2
go.mod
2
go.mod
|
@ -2,4 +2,4 @@ module kiln
|
||||||
|
|
||||||
go 1.15
|
go 1.15
|
||||||
|
|
||||||
require git.sr.ht/~adnano/go-gemini v0.1.0
|
require git.sr.ht/~adnano/go-gemini v0.1.1
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -1,2 +1,2 @@
|
||||||
git.sr.ht/~adnano/go-gemini v0.1.0 h1:UqRT90kR+/8q5s/JemmDPH6A9VocBezIuWbOpZYBypU=
|
git.sr.ht/~adnano/go-gemini v0.1.1 h1:g6OwUxLviy6dkPiuW2eRQP5Fow412vUsKmKYbCr2H9U=
|
||||||
git.sr.ht/~adnano/go-gemini v0.1.0/go.mod h1:If1VxEWcZDrRt5FeAFnGTcM2Ud1E3BXs3VJ5rnZWKq0=
|
git.sr.ht/~adnano/go-gemini v0.1.1/go.mod h1:If1VxEWcZDrRt5FeAFnGTcM2Ud1E3BXs3VJ5rnZWKq0=
|
||||||
|
|
76
html.go
Normal file
76
html.go
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"html"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.sr.ht/~adnano/go-gemini"
|
||||||
|
)
|
||||||
|
|
||||||
|
// textToHTML returns the Gemini text response as HTML.
|
||||||
|
func textToHTML(text gemini.Text) string {
|
||||||
|
var b strings.Builder
|
||||||
|
var pre bool
|
||||||
|
var list bool
|
||||||
|
for _, l := range text {
|
||||||
|
if _, ok := l.(gemini.LineListItem); ok {
|
||||||
|
if !list {
|
||||||
|
list = true
|
||||||
|
fmt.Fprint(&b, "<ul>\n")
|
||||||
|
}
|
||||||
|
} else if list {
|
||||||
|
list = false
|
||||||
|
fmt.Fprint(&b, "</ul>\n")
|
||||||
|
}
|
||||||
|
switch l.(type) {
|
||||||
|
case gemini.LineLink:
|
||||||
|
link := l.(gemini.LineLink)
|
||||||
|
url := html.EscapeString(link.URL)
|
||||||
|
name := html.EscapeString(link.Name)
|
||||||
|
if name == "" {
|
||||||
|
name = url
|
||||||
|
}
|
||||||
|
fmt.Fprintf(&b, "<p><a href='%s'>%s</a></p>\n", url, name)
|
||||||
|
case gemini.LinePreformattingToggle:
|
||||||
|
pre = !pre
|
||||||
|
if pre {
|
||||||
|
fmt.Fprint(&b, "<pre>\n")
|
||||||
|
} else {
|
||||||
|
fmt.Fprint(&b, "</pre>\n")
|
||||||
|
}
|
||||||
|
case gemini.LinePreformattedText:
|
||||||
|
text := string(l.(gemini.LinePreformattedText))
|
||||||
|
fmt.Fprintf(&b, "%s\n", html.EscapeString(text))
|
||||||
|
case gemini.LineHeading1:
|
||||||
|
text := string(l.(gemini.LineHeading1))
|
||||||
|
fmt.Fprintf(&b, "<h1>%s</h1>\n", html.EscapeString(text))
|
||||||
|
case gemini.LineHeading2:
|
||||||
|
text := string(l.(gemini.LineHeading2))
|
||||||
|
fmt.Fprintf(&b, "<h2>%s</h2>\n", html.EscapeString(text))
|
||||||
|
case gemini.LineHeading3:
|
||||||
|
text := string(l.(gemini.LineHeading3))
|
||||||
|
fmt.Fprintf(&b, "<h3>%s</h3>\n", html.EscapeString(text))
|
||||||
|
case gemini.LineListItem:
|
||||||
|
text := string(l.(gemini.LineListItem))
|
||||||
|
fmt.Fprintf(&b, "<li>%s</li>\n", html.EscapeString(text))
|
||||||
|
case gemini.LineQuote:
|
||||||
|
text := string(l.(gemini.LineQuote))
|
||||||
|
fmt.Fprintf(&b, "<blockquote>%s</blockquote>\n", html.EscapeString(text))
|
||||||
|
case gemini.LineText:
|
||||||
|
text := string(l.(gemini.LineText))
|
||||||
|
if text == "" {
|
||||||
|
fmt.Fprint(&b, "<br>\n")
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(&b, "<p>%s</p>\n", html.EscapeString(text))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if pre {
|
||||||
|
fmt.Fprint(&b, "</pre>\n")
|
||||||
|
}
|
||||||
|
if list {
|
||||||
|
fmt.Fprint(&b, "</ul>\n")
|
||||||
|
}
|
||||||
|
return b.String()
|
||||||
|
}
|
2
main.go
2
main.go
|
@ -446,7 +446,7 @@ func outputHTML(p *Page) (path string, content []byte) {
|
||||||
|
|
||||||
r := bytes.NewReader(p.content)
|
r := bytes.NewReader(p.content)
|
||||||
text := gemini.Parse(r)
|
text := gemini.Parse(r)
|
||||||
content = []byte(text.HTML())
|
content = []byte(textToHTML(text))
|
||||||
|
|
||||||
type tmplCtx struct {
|
type tmplCtx struct {
|
||||||
Title string
|
Title string
|
||||||
|
|
Loading…
Reference in a new issue