mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
985 lines
18 KiB
Go
985 lines
18 KiB
Go
//
|
|
// Black Friday Markdown Processor
|
|
// Originally based on http://github.com/tanoku/upskirt
|
|
// by Russ Ross <russ@russross.com>
|
|
//
|
|
|
|
//
|
|
// Functions to parse inline elements.
|
|
//
|
|
|
|
package blackfriday
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
// Functions to parse text within a block
|
|
// Each function returns the number of chars taken care of
|
|
// data is the complete block being rendered
|
|
// offset is the number of valid chars before the current cursor
|
|
|
|
func parseInline(out *bytes.Buffer, rndr *render, data []byte) {
|
|
// this is called recursively: enforce a maximum depth
|
|
if rndr.nesting >= rndr.maxNesting {
|
|
return
|
|
}
|
|
rndr.nesting++
|
|
|
|
i, end := 0, 0
|
|
for i < len(data) {
|
|
// copy inactive chars into the output
|
|
for end < len(data) && rndr.inline[data[end]] == nil {
|
|
end++
|
|
}
|
|
|
|
if rndr.mk.NormalText != nil {
|
|
rndr.mk.NormalText(out, data[i:end], rndr.mk.Opaque)
|
|
} else {
|
|
out.Write(data[i:end])
|
|
}
|
|
|
|
if end >= len(data) {
|
|
break
|
|
}
|
|
i = end
|
|
|
|
// call the trigger
|
|
parser := rndr.inline[data[end]]
|
|
if consumed := parser(out, rndr, data, i); consumed == 0 {
|
|
// no action from the callback; buffer the byte for later
|
|
end = i + 1
|
|
} else {
|
|
// skip past whatever the callback used
|
|
i += consumed
|
|
end = i
|
|
}
|
|
}
|
|
|
|
rndr.nesting--
|
|
}
|
|
|
|
// single and double emphasis parsing
|
|
func inlineEmphasis(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
data = data[offset:]
|
|
c := data[0]
|
|
ret := 0
|
|
|
|
if len(data) > 2 && data[1] != c {
|
|
// whitespace cannot follow an opening emphasis;
|
|
// strikethrough only takes two characters '~~'
|
|
if c == '~' || isspace(data[1]) {
|
|
return 0
|
|
}
|
|
if ret = inlineHelperEmph1(out, rndr, data[1:], c); ret == 0 {
|
|
return 0
|
|
}
|
|
|
|
return ret + 1
|
|
}
|
|
|
|
if len(data) > 3 && data[1] == c && data[2] != c {
|
|
if isspace(data[2]) {
|
|
return 0
|
|
}
|
|
if ret = inlineHelperEmph2(out, rndr, data[2:], c); ret == 0 {
|
|
return 0
|
|
}
|
|
|
|
return ret + 2
|
|
}
|
|
|
|
if len(data) > 4 && data[1] == c && data[2] == c && data[3] != c {
|
|
if c == '~' || isspace(data[3]) {
|
|
return 0
|
|
}
|
|
if ret = inlineHelperEmph3(out, rndr, data, 3, c); ret == 0 {
|
|
return 0
|
|
}
|
|
|
|
return ret + 3
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func inlineCodeSpan(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
data = data[offset:]
|
|
|
|
nb := 0
|
|
|
|
// count the number of backticks in the delimiter
|
|
for nb < len(data) && data[nb] == '`' {
|
|
nb++
|
|
}
|
|
|
|
// find the next delimiter
|
|
i, end := 0, 0
|
|
for end = nb; end < len(data) && i < nb; end++ {
|
|
if data[end] == '`' {
|
|
i++
|
|
} else {
|
|
i = 0
|
|
}
|
|
}
|
|
|
|
if i < nb && end >= len(data) {
|
|
return 0 // no matching delimiter
|
|
}
|
|
|
|
// trim outside whitespace
|
|
f_begin := nb
|
|
for f_begin < end && (data[f_begin] == ' ' || data[f_begin] == '\t') {
|
|
f_begin++
|
|
}
|
|
|
|
f_end := end - nb
|
|
for f_end > nb && (data[f_end-1] == ' ' || data[f_end-1] == '\t') {
|
|
f_end--
|
|
}
|
|
|
|
// real code span
|
|
if rndr.mk.CodeSpan == nil {
|
|
return 0
|
|
}
|
|
if f_begin < f_end {
|
|
if rndr.mk.CodeSpan(out, data[f_begin:f_end], rndr.mk.Opaque) == 0 {
|
|
end = 0
|
|
}
|
|
} else {
|
|
if rndr.mk.CodeSpan(out, nil, rndr.mk.Opaque) == 0 {
|
|
end = 0
|
|
}
|
|
}
|
|
|
|
return end
|
|
|
|
}
|
|
|
|
// '\n' preceded by two spaces
|
|
func inlineLineBreak(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
if offset < 2 || data[offset-1] != ' ' || data[offset-2] != ' ' {
|
|
return 0
|
|
}
|
|
|
|
// remove trailing spaces from out and render
|
|
outBytes := out.Bytes()
|
|
end := len(outBytes)
|
|
for end > 0 && outBytes[end-1] == ' ' {
|
|
end--
|
|
}
|
|
out.Truncate(end)
|
|
|
|
if rndr.mk.LineBreak == nil {
|
|
return 0
|
|
}
|
|
if rndr.mk.LineBreak(out, rndr.mk.Opaque) > 0 {
|
|
return 1
|
|
} else {
|
|
return 0
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
// '[': parse a link or an image
|
|
func inlineLink(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
isImg := offset > 0 && data[offset-1] == '!'
|
|
|
|
data = data[offset:]
|
|
|
|
i := 1
|
|
var title, link []byte
|
|
text_has_nl := false
|
|
|
|
// check whether the correct renderer exists
|
|
if (isImg && rndr.mk.Image == nil) || (!isImg && rndr.mk.Link == nil) {
|
|
return 0
|
|
}
|
|
|
|
// look for the matching closing bracket
|
|
for level := 1; level > 0 && i < len(data); i++ {
|
|
switch {
|
|
case data[i] == '\n':
|
|
text_has_nl = true
|
|
|
|
case data[i-1] == '\\':
|
|
continue
|
|
|
|
case data[i] == '[':
|
|
level++
|
|
|
|
case data[i] == ']':
|
|
level--
|
|
if level <= 0 {
|
|
i-- // compensate for extra i++ in for loop
|
|
}
|
|
}
|
|
}
|
|
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
|
|
txt_e := i
|
|
i++
|
|
|
|
// skip any amount of whitespace or newline
|
|
// (this is much more lax than original markdown syntax)
|
|
for i < len(data) && isspace(data[i]) {
|
|
i++
|
|
}
|
|
|
|
// inline style link
|
|
switch {
|
|
case i < len(data) && data[i] == '(':
|
|
// skip initial whitespace
|
|
i++
|
|
|
|
for i < len(data) && isspace(data[i]) {
|
|
i++
|
|
}
|
|
|
|
link_b := i
|
|
|
|
// look for link end: ' " )
|
|
for i < len(data) {
|
|
if data[i] == '\\' {
|
|
i += 2
|
|
} else {
|
|
if data[i] == ')' || data[i] == '\'' || data[i] == '"' {
|
|
break
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
link_e := i
|
|
|
|
// look for title end if present
|
|
title_b, title_e := 0, 0
|
|
if data[i] == '\'' || data[i] == '"' {
|
|
i++
|
|
title_b = i
|
|
|
|
for i < len(data) {
|
|
if data[i] == '\\' {
|
|
i += 2
|
|
} else {
|
|
if data[i] == ')' {
|
|
break
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
|
|
// skip whitespace after title
|
|
title_e = i - 1
|
|
for title_e > title_b && isspace(data[title_e]) {
|
|
title_e--
|
|
}
|
|
|
|
// check for closing quote presence
|
|
if data[title_e] != '\'' && data[title_e] != '"' {
|
|
title_b, title_e = 0, 0
|
|
link_e = i
|
|
}
|
|
}
|
|
|
|
// remove whitespace at the end of the link
|
|
for link_e > link_b && isspace(data[link_e-1]) {
|
|
link_e--
|
|
}
|
|
|
|
// remove optional angle brackets around the link
|
|
if data[link_b] == '<' {
|
|
link_b++
|
|
}
|
|
if data[link_e-1] == '>' {
|
|
link_e--
|
|
}
|
|
|
|
// build escaped link and title
|
|
if link_e > link_b {
|
|
link = data[link_b:link_e]
|
|
}
|
|
|
|
if title_e > title_b {
|
|
title = data[title_b:title_e]
|
|
}
|
|
|
|
i++
|
|
|
|
// reference style link
|
|
case i < len(data) && data[i] == '[':
|
|
var id []byte
|
|
|
|
// look for the id
|
|
i++
|
|
link_b := i
|
|
for i < len(data) && data[i] != ']' {
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
link_e := i
|
|
|
|
// find the reference
|
|
if link_b == link_e {
|
|
if text_has_nl {
|
|
var b bytes.Buffer
|
|
|
|
for j := 1; j < txt_e; j++ {
|
|
switch {
|
|
case data[j] != '\n':
|
|
b.WriteByte(data[j])
|
|
case data[j-1] != ' ':
|
|
b.WriteByte(' ')
|
|
}
|
|
}
|
|
|
|
id = b.Bytes()
|
|
} else {
|
|
id = data[1:txt_e]
|
|
}
|
|
} else {
|
|
id = data[link_b:link_e]
|
|
}
|
|
|
|
// find the reference with matching id (ids are case-insensitive)
|
|
key := string(bytes.ToLower(id))
|
|
lr, ok := rndr.refs[key]
|
|
if !ok {
|
|
return 0
|
|
}
|
|
|
|
// keep link and title from reference
|
|
link = lr.link
|
|
title = lr.title
|
|
i++
|
|
|
|
// shortcut reference style link
|
|
default:
|
|
var id []byte
|
|
|
|
// craft the id
|
|
if text_has_nl {
|
|
var b bytes.Buffer
|
|
|
|
for j := 1; j < txt_e; j++ {
|
|
switch {
|
|
case data[j] != '\n':
|
|
b.WriteByte(data[j])
|
|
case data[j-1] != ' ':
|
|
b.WriteByte(' ')
|
|
}
|
|
}
|
|
|
|
id = b.Bytes()
|
|
} else {
|
|
id = data[1:txt_e]
|
|
}
|
|
|
|
// find the reference with matching id
|
|
key := string(bytes.ToLower(id))
|
|
lr, ok := rndr.refs[key]
|
|
if !ok {
|
|
return 0
|
|
}
|
|
|
|
// keep link and title from reference
|
|
link = lr.link
|
|
title = lr.title
|
|
|
|
// rewind the whitespace
|
|
i = txt_e + 1
|
|
}
|
|
|
|
// build content: img alt is escaped, link content is parsed
|
|
var content bytes.Buffer
|
|
if txt_e > 1 {
|
|
if isImg {
|
|
content.Write(data[1:txt_e])
|
|
} else {
|
|
parseInline(&content, rndr, data[1:txt_e])
|
|
}
|
|
}
|
|
|
|
var u_link []byte
|
|
if len(link) > 0 {
|
|
var u_link_buf bytes.Buffer
|
|
unescapeText(&u_link_buf, link)
|
|
u_link = u_link_buf.Bytes()
|
|
}
|
|
|
|
// call the relevant rendering function
|
|
ret := 0
|
|
if isImg {
|
|
outSize := out.Len()
|
|
outBytes := out.Bytes()
|
|
if outSize > 0 && outBytes[outSize-1] == '!' {
|
|
out.Truncate(outSize - 1)
|
|
}
|
|
|
|
ret = rndr.mk.Image(out, u_link, title, content.Bytes(), rndr.mk.Opaque)
|
|
} else {
|
|
ret = rndr.mk.Link(out, u_link, title, content.Bytes(), rndr.mk.Opaque)
|
|
}
|
|
|
|
if ret > 0 {
|
|
return i
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// '<' when tags or autolinks are allowed
|
|
func inlineLAngle(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
data = data[offset:]
|
|
altype := LINK_TYPE_NOT_AUTOLINK
|
|
end := tagLength(data, &altype)
|
|
ret := 0
|
|
|
|
if end > 2 {
|
|
switch {
|
|
case rndr.mk.AutoLink != nil && altype != LINK_TYPE_NOT_AUTOLINK:
|
|
var u_link bytes.Buffer
|
|
unescapeText(&u_link, data[1:end+1-2])
|
|
ret = rndr.mk.AutoLink(out, u_link.Bytes(), altype, rndr.mk.Opaque)
|
|
case rndr.mk.RawHtmlTag != nil:
|
|
ret = rndr.mk.RawHtmlTag(out, data[:end], rndr.mk.Opaque)
|
|
}
|
|
}
|
|
|
|
if ret == 0 {
|
|
return 0
|
|
}
|
|
return end
|
|
}
|
|
|
|
// '\\' backslash escape
|
|
var escapeChars = []byte("\\`*_{}[]()#+-.!:|&<>")
|
|
|
|
func inlineEscape(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
data = data[offset:]
|
|
|
|
if len(data) > 1 {
|
|
if bytes.IndexByte(escapeChars, data[1]) < 0 {
|
|
return 0
|
|
}
|
|
|
|
if rndr.mk.NormalText != nil {
|
|
rndr.mk.NormalText(out, data[1:2], rndr.mk.Opaque)
|
|
} else {
|
|
out.WriteByte(data[1])
|
|
}
|
|
}
|
|
|
|
return 2
|
|
}
|
|
|
|
func unescapeText(ob *bytes.Buffer, src []byte) {
|
|
i := 0
|
|
for i < len(src) {
|
|
org := i
|
|
for i < len(src) && src[i] != '\\' {
|
|
i++
|
|
}
|
|
|
|
if i > org {
|
|
ob.Write(src[org:i])
|
|
}
|
|
|
|
if i+1 >= len(src) {
|
|
break
|
|
}
|
|
|
|
ob.WriteByte(src[i+1])
|
|
i += 2
|
|
}
|
|
}
|
|
|
|
// '&' escaped when it doesn't belong to an entity
|
|
// valid entities are assumed to be anything matching &#?[A-Za-z0-9]+;
|
|
func inlineEntity(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
data = data[offset:]
|
|
|
|
end := 1
|
|
|
|
if end < len(data) && data[end] == '#' {
|
|
end++
|
|
}
|
|
|
|
for end < len(data) && isalnum(data[end]) {
|
|
end++
|
|
}
|
|
|
|
if end < len(data) && data[end] == ';' {
|
|
end++ // real entity
|
|
} else {
|
|
return 0 // lone '&'
|
|
}
|
|
|
|
if rndr.mk.Entity != nil {
|
|
rndr.mk.Entity(out, data[:end], rndr.mk.Opaque)
|
|
} else {
|
|
out.Write(data[:end])
|
|
}
|
|
|
|
return end
|
|
}
|
|
|
|
func inlineAutoLink(out *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
|
// quick check to rule out most false hits on ':'
|
|
if len(data) < offset+3 || data[offset+1] != '/' || data[offset+2] != '/' {
|
|
return 0
|
|
}
|
|
|
|
// scan backward for a word boundary
|
|
rewind := 0
|
|
for offset-rewind > 0 && rewind <= 7 && !isspace(data[offset-rewind-1]) && !isspace(data[offset-rewind-1]) {
|
|
rewind++
|
|
}
|
|
if rewind > 6 { // longest supported protocol is "mailto" which has 6 letters
|
|
return 0
|
|
}
|
|
|
|
orig_data := data
|
|
data = data[offset-rewind:]
|
|
|
|
if !isSafeLink(data) {
|
|
return 0
|
|
}
|
|
|
|
link_end := 0
|
|
for link_end < len(data) && !isspace(data[link_end]) {
|
|
link_end++
|
|
}
|
|
|
|
// Skip punctuation at the end of the link
|
|
if (data[link_end-1] == '.' || data[link_end-1] == ',' || data[link_end-1] == ';') && data[link_end-2] != '\\' {
|
|
link_end--
|
|
}
|
|
|
|
// See if the link finishes with a punctuation sign that can be closed.
|
|
var copen byte
|
|
switch data[link_end-1] {
|
|
case '"':
|
|
copen = '"'
|
|
case '\'':
|
|
copen = '\''
|
|
case ')':
|
|
copen = '('
|
|
case ']':
|
|
copen = '['
|
|
case '}':
|
|
copen = '{'
|
|
default:
|
|
copen = 0
|
|
}
|
|
|
|
if copen != 0 {
|
|
buf_end := offset - rewind + link_end - 2
|
|
|
|
open_delim := 1
|
|
|
|
/* Try to close the final punctuation sign in this same line;
|
|
* if we managed to close it outside of the URL, that means that it's
|
|
* not part of the URL. If it closes inside the URL, that means it
|
|
* is part of the URL.
|
|
*
|
|
* Examples:
|
|
*
|
|
* foo http://www.pokemon.com/Pikachu_(Electric) bar
|
|
* => http://www.pokemon.com/Pikachu_(Electric)
|
|
*
|
|
* foo (http://www.pokemon.com/Pikachu_(Electric)) bar
|
|
* => http://www.pokemon.com/Pikachu_(Electric)
|
|
*
|
|
* foo http://www.pokemon.com/Pikachu_(Electric)) bar
|
|
* => http://www.pokemon.com/Pikachu_(Electric))
|
|
*
|
|
* (foo http://www.pokemon.com/Pikachu_(Electric)) bar
|
|
* => foo http://www.pokemon.com/Pikachu_(Electric)
|
|
*/
|
|
|
|
for buf_end >= 0 && orig_data[buf_end] != '\n' && open_delim != 0 {
|
|
if orig_data[buf_end] == data[link_end-1] {
|
|
open_delim++
|
|
}
|
|
|
|
if orig_data[buf_end] == copen {
|
|
open_delim--
|
|
}
|
|
|
|
buf_end--
|
|
}
|
|
|
|
if open_delim == 0 {
|
|
link_end--
|
|
}
|
|
}
|
|
|
|
// we were triggered on the ':', so we need to rewind the output a bit
|
|
if out.Len() >= rewind {
|
|
out.Truncate(len(out.Bytes()) - rewind)
|
|
}
|
|
|
|
if rndr.mk.AutoLink != nil {
|
|
var u_link bytes.Buffer
|
|
unescapeText(&u_link, data[:link_end])
|
|
|
|
rndr.mk.AutoLink(out, u_link.Bytes(), LINK_TYPE_NORMAL, rndr.mk.Opaque)
|
|
}
|
|
|
|
return link_end - rewind
|
|
}
|
|
|
|
var validUris = [][]byte{[]byte("http://"), []byte("https://"), []byte("ftp://"), []byte("mailto://")}
|
|
|
|
func isSafeLink(link []byte) bool {
|
|
for _, prefix := range validUris {
|
|
// TODO: handle unicode here
|
|
// case-insensitive prefix test
|
|
if len(link) > len(prefix) && bytes.Equal(bytes.ToLower(link[:len(prefix)]), prefix) && isalnum(link[len(prefix)]) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// return the length of the given tag, or 0 is it's not valid
|
|
func tagLength(data []byte, autolink *int) int {
|
|
var i, j int
|
|
|
|
// a valid tag can't be shorter than 3 chars
|
|
if len(data) < 3 {
|
|
return 0
|
|
}
|
|
|
|
// begins with a '<' optionally followed by '/', followed by letter or number
|
|
if data[0] != '<' {
|
|
return 0
|
|
}
|
|
if data[1] == '/' {
|
|
i = 2
|
|
} else {
|
|
i = 1
|
|
}
|
|
|
|
if !isalnum(data[i]) {
|
|
return 0
|
|
}
|
|
|
|
// scheme test
|
|
*autolink = LINK_TYPE_NOT_AUTOLINK
|
|
|
|
// try to find the beggining of an URI
|
|
for i < len(data) && (isalnum(data[i]) || data[i] == '.' || data[i] == '+' || data[i] == '-') {
|
|
i++
|
|
}
|
|
|
|
if i > 1 && data[i] == '@' {
|
|
if j = isMailtoAutoLink(data[i:]); j != 0 {
|
|
*autolink = LINK_TYPE_EMAIL
|
|
return i + j
|
|
}
|
|
}
|
|
|
|
if i > 2 && data[i] == ':' {
|
|
*autolink = LINK_TYPE_NORMAL
|
|
i++
|
|
}
|
|
|
|
// complete autolink test: no whitespace or ' or "
|
|
switch {
|
|
case i >= len(data):
|
|
*autolink = LINK_TYPE_NOT_AUTOLINK
|
|
case *autolink != 0:
|
|
j = i
|
|
|
|
for i < len(data) {
|
|
if data[i] == '\\' {
|
|
i += 2
|
|
} else {
|
|
if data[i] == '>' || data[i] == '\'' || data[i] == '"' || isspace(data[i]) {
|
|
break
|
|
} else {
|
|
i++
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
if i > j && data[i] == '>' {
|
|
return i + 1
|
|
}
|
|
|
|
// one of the forbidden chars has been found
|
|
*autolink = LINK_TYPE_NOT_AUTOLINK
|
|
}
|
|
|
|
// look for something looking like a tag end
|
|
for i < len(data) && data[i] != '>' {
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
return i + 1
|
|
}
|
|
|
|
// look for the address part of a mail autolink and '>'
|
|
// this is less strict than the original markdown e-mail address matching
|
|
func isMailtoAutoLink(data []byte) int {
|
|
nb := 0
|
|
|
|
// address is assumed to be: [-@._a-zA-Z0-9]+ with exactly one '@'
|
|
for i := 0; i < len(data); i++ {
|
|
if isalnum(data[i]) {
|
|
continue
|
|
}
|
|
|
|
switch data[i] {
|
|
case '@':
|
|
nb++
|
|
|
|
case '-', '.', '_':
|
|
break
|
|
|
|
case '>':
|
|
if nb == 1 {
|
|
return i + 1
|
|
} else {
|
|
return 0
|
|
}
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
// look for the next emph char, skipping other constructs
|
|
func inlineHelperFindEmphChar(data []byte, c byte) int {
|
|
i := 1
|
|
|
|
for i < len(data) {
|
|
for i < len(data) && data[i] != c && data[i] != '`' && data[i] != '[' {
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
if data[i] == c {
|
|
return i
|
|
}
|
|
|
|
// do not count escaped chars
|
|
if i != 0 && data[i-1] == '\\' {
|
|
i++
|
|
continue
|
|
}
|
|
|
|
if data[i] == '`' {
|
|
// skip a code span
|
|
tmp_i := 0
|
|
i++
|
|
for i < len(data) && data[i] != '`' {
|
|
if tmp_i == 0 && data[i] == c {
|
|
tmp_i = i
|
|
}
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return tmp_i
|
|
}
|
|
i++
|
|
} else {
|
|
if data[i] == '[' {
|
|
// skip a link
|
|
tmp_i := 0
|
|
i++
|
|
for i < len(data) && data[i] != ']' {
|
|
if tmp_i == 0 && data[i] == c {
|
|
tmp_i = i
|
|
}
|
|
i++
|
|
}
|
|
i++
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t' || data[i] == '\n') {
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return tmp_i
|
|
}
|
|
if data[i] != '[' && data[i] != '(' { // not a link
|
|
if tmp_i > 0 {
|
|
return tmp_i
|
|
} else {
|
|
continue
|
|
}
|
|
}
|
|
cc := data[i]
|
|
i++
|
|
for i < len(data) && data[i] != cc {
|
|
if tmp_i == 0 && data[i] == c {
|
|
tmp_i = i
|
|
}
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return tmp_i
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func inlineHelperEmph1(out *bytes.Buffer, rndr *render, data []byte, c byte) int {
|
|
i := 0
|
|
|
|
if rndr.mk.Emphasis == nil {
|
|
return 0
|
|
}
|
|
|
|
// skip one symbol if coming from emph3
|
|
if len(data) > 1 && data[0] == c && data[1] == c {
|
|
i = 1
|
|
}
|
|
|
|
for i < len(data) {
|
|
length := inlineHelperFindEmphChar(data[i:], c)
|
|
if length == 0 {
|
|
return 0
|
|
}
|
|
i += length
|
|
if i >= len(data) {
|
|
return 0
|
|
}
|
|
|
|
if i+1 < len(data) && data[i+1] == c {
|
|
i++
|
|
continue
|
|
}
|
|
|
|
if data[i] == c && !isspace(data[i-1]) {
|
|
|
|
if rndr.flags&EXTENSION_NO_INTRA_EMPHASIS != 0 {
|
|
if !(i+1 == len(data) || isspace(data[i+1]) || ispunct(data[i+1])) {
|
|
continue
|
|
}
|
|
}
|
|
|
|
var work bytes.Buffer
|
|
parseInline(&work, rndr, data[:i])
|
|
r := rndr.mk.Emphasis(out, work.Bytes(), rndr.mk.Opaque)
|
|
if r > 0 {
|
|
return i + 1
|
|
} else {
|
|
return 0
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0
|
|
}
|
|
|
|
func inlineHelperEmph2(out *bytes.Buffer, rndr *render, data []byte, c byte) int {
|
|
render_method := rndr.mk.DoubleEmphasis
|
|
if c == '~' {
|
|
render_method = rndr.mk.StrikeThrough
|
|
}
|
|
|
|
if render_method == nil {
|
|
return 0
|
|
}
|
|
|
|
i := 0
|
|
|
|
for i < len(data) {
|
|
length := inlineHelperFindEmphChar(data[i:], c)
|
|
if length == 0 {
|
|
return 0
|
|
}
|
|
i += length
|
|
|
|
if i+1 < len(data) && data[i] == c && data[i+1] == c && i > 0 && !isspace(data[i-1]) {
|
|
var work bytes.Buffer
|
|
parseInline(&work, rndr, data[:i])
|
|
r := render_method(out, work.Bytes(), rndr.mk.Opaque)
|
|
if r > 0 {
|
|
return i + 2
|
|
} else {
|
|
return 0
|
|
}
|
|
}
|
|
i++
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func inlineHelperEmph3(out *bytes.Buffer, rndr *render, data []byte, offset int, c byte) int {
|
|
i := 0
|
|
orig_data := data
|
|
data = data[offset:]
|
|
|
|
for i < len(data) {
|
|
length := inlineHelperFindEmphChar(data[i:], c)
|
|
if length == 0 {
|
|
return 0
|
|
}
|
|
i += length
|
|
|
|
// skip whitespace preceded symbols
|
|
if data[i] != c || isspace(data[i-1]) {
|
|
continue
|
|
}
|
|
|
|
switch {
|
|
case (i+2 < len(data) && data[i+1] == c && data[i+2] == c && rndr.mk.TripleEmphasis != nil):
|
|
// triple symbol found
|
|
var work bytes.Buffer
|
|
|
|
parseInline(&work, rndr, data[:i])
|
|
r := rndr.mk.TripleEmphasis(out, work.Bytes(), rndr.mk.Opaque)
|
|
if r > 0 {
|
|
return i + 3
|
|
} else {
|
|
return 0
|
|
}
|
|
case (i+1 < len(data) && data[i+1] == c):
|
|
// double symbol found, hand over to emph1
|
|
length = inlineHelperEmph1(out, rndr, orig_data[offset-2:], c)
|
|
if length == 0 {
|
|
return 0
|
|
} else {
|
|
return length - 2
|
|
}
|
|
default:
|
|
// single symbol found, hand over to emph2
|
|
length = inlineHelperEmph2(out, rndr, orig_data[offset-1:], c)
|
|
if length == 0 {
|
|
return 0
|
|
} else {
|
|
return length - 1
|
|
}
|
|
}
|
|
}
|
|
return 0
|
|
}
|