mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 17:04:39 +03:00
new website for www.xmox.nl
most content is in markdown files in website/, some is taken out of the repo README and rfc/index.txt. a Go file generates html. static files are kept in a separate repo due to size.
This commit is contained in:
@ -165,10 +165,10 @@ for (const a of document.querySelectorAll('a')) {
|
||||
continue
|
||||
}
|
||||
t := strings.Split(line, "\t")
|
||||
if len(t) != 2 {
|
||||
if len(t) != 4 {
|
||||
continue
|
||||
}
|
||||
topics[topic] = append(topics[topic], rfc{strings.TrimSpace(t[0]), t[1]})
|
||||
topics[topic] = append(topics[topic], rfc{strings.TrimSpace(t[0]), t[3]})
|
||||
}
|
||||
for _, l := range topics {
|
||||
sort.Slice(l, func(i, j int) bool {
|
||||
|
Reference in New Issue
Block a user