mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 13:30:26 +00:00
262 lines
6.2 KiB
Go
262 lines
6.2 KiB
Go
package markup
|
|
|
|
import (
|
|
"fmt"
|
|
"html"
|
|
"strings"
|
|
)
|
|
|
|
// HyphaExists holds function that checks that a hypha is present.
|
|
var HyphaExists func(string) bool
|
|
|
|
//
|
|
var HyphaImageForOG func(string) string
|
|
|
|
// HyphaAccess holds function that accesses a hypha by its name.
|
|
var HyphaAccess func(string) (rawText, binaryHtml string, err error)
|
|
|
|
// HyphaIterate is a function that iterates all hypha names existing.
|
|
var HyphaIterate func(func(string))
|
|
|
|
// GemLexerState is used by markup parser to remember what is going on.
|
|
type GemLexerState struct {
|
|
// Name of hypha being parsed
|
|
name string
|
|
where string // "", "list", "pre"
|
|
// Line id
|
|
id int
|
|
buf string
|
|
// Temporaries
|
|
img *Img
|
|
table *Table
|
|
}
|
|
|
|
type Line struct {
|
|
id int
|
|
// interface{} may be bad. TODO: a proper type
|
|
contents interface{}
|
|
}
|
|
|
|
func (md *MycoDoc) lex() (ast []Line) {
|
|
var state = GemLexerState{name: md.hyphaName}
|
|
|
|
for _, line := range append(strings.Split(md.contents, "\n"), "") {
|
|
lineToAST(line, &state, &ast)
|
|
}
|
|
return ast
|
|
}
|
|
|
|
// Lex `line` in markup and save it to `ast` using `state`.
|
|
func lineToAST(line string, state *GemLexerState, ast *[]Line) {
|
|
addLine := func(text interface{}) {
|
|
*ast = append(*ast, Line{id: state.id, contents: text})
|
|
}
|
|
addParagraphIfNeeded := func() {
|
|
if state.where == "p" {
|
|
state.where = ""
|
|
addLine(fmt.Sprintf("<p id='%d'>%s</p>", state.id, strings.ReplaceAll(ParagraphToHtml(state.name, state.buf), "\n", "<br>")))
|
|
state.buf = ""
|
|
}
|
|
}
|
|
|
|
// Process empty lines depending on the current state
|
|
if "" == strings.TrimSpace(line) {
|
|
switch state.where {
|
|
case "list":
|
|
state.where = ""
|
|
addLine(state.buf + "</ul>")
|
|
case "number":
|
|
state.where = ""
|
|
addLine(state.buf + "</ol>")
|
|
case "pre":
|
|
state.buf += "\n"
|
|
case "launchpad":
|
|
state.where = ""
|
|
addLine(state.buf + "</ul>")
|
|
case "p":
|
|
addParagraphIfNeeded()
|
|
}
|
|
return
|
|
}
|
|
|
|
startsWith := func(token string) bool {
|
|
return strings.HasPrefix(line, token)
|
|
}
|
|
addHeading := func(i int) {
|
|
addLine(fmt.Sprintf("<h%d id='%d'>%s</h%d>", i, state.id, ParagraphToHtml(state.name, line[i+1:]), i))
|
|
}
|
|
|
|
// Beware! Usage of goto. Some may say it is considered evil but in this case it helped to make a better-structured code.
|
|
switch state.where {
|
|
case "img":
|
|
goto imgState
|
|
case "table":
|
|
goto tableState
|
|
case "pre":
|
|
goto preformattedState
|
|
case "list":
|
|
goto listState
|
|
case "number":
|
|
goto numberState
|
|
case "launchpad":
|
|
goto launchpadState
|
|
default: // "p" or ""
|
|
goto normalState
|
|
}
|
|
|
|
imgState:
|
|
if shouldGoBackToNormal := state.img.Process(line); shouldGoBackToNormal {
|
|
state.where = ""
|
|
addLine(*state.img)
|
|
}
|
|
return
|
|
|
|
tableState:
|
|
if shouldGoBackToNormal := state.table.Process(line); shouldGoBackToNormal {
|
|
state.where = ""
|
|
addLine(*state.table)
|
|
}
|
|
return
|
|
|
|
preformattedState:
|
|
switch {
|
|
case startsWith("```"):
|
|
state.where = ""
|
|
state.buf = strings.TrimSuffix(state.buf, "\n")
|
|
addLine(state.buf + "</code></pre>")
|
|
state.buf = ""
|
|
default:
|
|
state.buf += html.EscapeString(line) + "\n"
|
|
}
|
|
return
|
|
|
|
listState:
|
|
switch {
|
|
case startsWith("* "):
|
|
state.buf += fmt.Sprintf("\t<li>%s</li>\n", ParagraphToHtml(state.name, line[2:]))
|
|
case startsWith("```"):
|
|
state.where = "pre"
|
|
addLine(state.buf + "</ul>")
|
|
state.id++
|
|
state.buf = fmt.Sprintf("<pre id='%d' alt='%s' class='codeblock'><code>", state.id, strings.TrimPrefix(line, "```"))
|
|
default:
|
|
state.where = ""
|
|
addLine(state.buf + "</ul>")
|
|
goto normalState
|
|
}
|
|
return
|
|
|
|
numberState:
|
|
switch {
|
|
case startsWith("*. "):
|
|
state.buf += fmt.Sprintf("\t<li>%s</li>\n", ParagraphToHtml(state.name, line[3:]))
|
|
case startsWith("```"):
|
|
state.where = "pre"
|
|
addLine(state.buf + "</ol>")
|
|
state.id++
|
|
state.buf = fmt.Sprintf("<pre id='%d' alt='%s' class='codeblock'><code>", state.id, strings.TrimPrefix(line, "```"))
|
|
default:
|
|
state.where = ""
|
|
addLine(state.buf + "</ol>")
|
|
goto normalState
|
|
}
|
|
return
|
|
|
|
launchpadState:
|
|
switch {
|
|
case startsWith("=>"):
|
|
href, text, class := Rocketlink(line, state.name)
|
|
state.buf += fmt.Sprintf(` <li class="launchpad__entry"><a class="rocketlink %s" href="%s">%s</a></li>`, class, href, text)
|
|
case startsWith("```"):
|
|
state.where = "pre"
|
|
addLine(state.buf + "</ul>")
|
|
state.id++
|
|
state.buf = fmt.Sprintf("<pre id='%d' alt='%s' class='codeblock'><code>", state.id, strings.TrimPrefix(line, "```"))
|
|
default:
|
|
state.where = ""
|
|
addLine(state.buf + "</ul>")
|
|
goto normalState
|
|
}
|
|
return
|
|
|
|
normalState:
|
|
state.id++
|
|
switch {
|
|
|
|
case startsWith("```"):
|
|
addParagraphIfNeeded()
|
|
state.where = "pre"
|
|
state.buf = fmt.Sprintf("<pre id='%d' alt='%s' class='codeblock'><code>", state.id, strings.TrimPrefix(line, "```"))
|
|
case startsWith("* "):
|
|
addParagraphIfNeeded()
|
|
state.where = "list"
|
|
state.buf = fmt.Sprintf("<ul id='%d'>\n", state.id)
|
|
goto listState
|
|
case startsWith("*. "):
|
|
addParagraphIfNeeded()
|
|
state.where = "number"
|
|
state.buf = fmt.Sprintf("<ol id='%d'>\n", state.id)
|
|
goto numberState
|
|
|
|
case startsWith("###### "):
|
|
addParagraphIfNeeded()
|
|
addHeading(6)
|
|
case startsWith("##### "):
|
|
addParagraphIfNeeded()
|
|
addHeading(5)
|
|
case startsWith("#### "):
|
|
addParagraphIfNeeded()
|
|
addHeading(4)
|
|
case startsWith("### "):
|
|
addParagraphIfNeeded()
|
|
addHeading(3)
|
|
case startsWith("## "):
|
|
addParagraphIfNeeded()
|
|
addHeading(2)
|
|
case startsWith("# "):
|
|
addParagraphIfNeeded()
|
|
addHeading(1)
|
|
|
|
case startsWith(">"):
|
|
addParagraphIfNeeded()
|
|
addLine(
|
|
fmt.Sprintf(
|
|
"<blockquote id='%d'>%s</blockquote>",
|
|
state.id,
|
|
ParagraphToHtml(state.name, remover(">")(line)),
|
|
),
|
|
)
|
|
case startsWith("=>"):
|
|
addParagraphIfNeeded()
|
|
state.where = "launchpad"
|
|
state.buf = fmt.Sprintf("<ul class='launchpad' id='%d'>\n", state.id)
|
|
goto launchpadState
|
|
|
|
case startsWith("<="):
|
|
addParagraphIfNeeded()
|
|
addLine(parseTransclusion(line, state.name))
|
|
case line == "----":
|
|
addParagraphIfNeeded()
|
|
*ast = append(*ast, Line{id: -1, contents: "<hr/>"})
|
|
case MatchesImg(line):
|
|
addParagraphIfNeeded()
|
|
img, shouldGoBackToNormal := ImgFromFirstLine(line, state.name)
|
|
if shouldGoBackToNormal {
|
|
addLine(*img)
|
|
} else {
|
|
state.where = "img"
|
|
state.img = img
|
|
}
|
|
case MatchesTable(line):
|
|
addParagraphIfNeeded()
|
|
state.where = "table"
|
|
state.table = TableFromFirstLine(line, state.name)
|
|
|
|
case state.where == "p":
|
|
state.buf += "\n" + line
|
|
default:
|
|
state.where = "p"
|
|
state.buf = line
|
|
}
|
|
}
|