2011-05-28 06:12:21 +08:00
|
|
|
//
|
|
|
|
// Black Friday Markdown Processor
|
|
|
|
// Ported to Go from http://github.com/tanoku/upskirt
|
|
|
|
// by Russ Ross <russ@russross.com>
|
|
|
|
//
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2011-05-26 03:59:30 +08:00
|
|
|
"fmt"
|
2011-05-28 06:12:21 +08:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2011-05-26 10:46:16 +08:00
|
|
|
"sort"
|
2011-05-26 03:59:30 +08:00
|
|
|
"unicode"
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MKDA_NOT_AUTOLINK = iota
|
|
|
|
MKDA_NORMAL
|
|
|
|
MKDA_EMAIL
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MKDEXT_NO_INTRA_EMPHASIS = 1 << iota
|
|
|
|
MKDEXT_TABLES
|
|
|
|
MKDEXT_FENCED_CODE
|
|
|
|
MKDEXT_AUTOLINK
|
|
|
|
MKDEXT_STRIKETHROUGH
|
|
|
|
MKDEXT_LAX_HTML_BLOCKS
|
|
|
|
MKDEXT_SPACE_HEADERS
|
|
|
|
)
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
const (
|
|
|
|
_ = iota
|
|
|
|
MKD_LIST_ORDERED
|
|
|
|
MKD_LI_BLOCK // <li> containing block data
|
|
|
|
MKD_LI_END = 8
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MKD_TABLE_ALIGN_L = 1 << iota
|
|
|
|
MKD_TABLE_ALIGN_R
|
|
|
|
MKD_TABLE_ALIGN_CENTER = (MKD_TABLE_ALIGN_L | MKD_TABLE_ALIGN_R)
|
|
|
|
)
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
var block_tags = map[string]int{
|
|
|
|
"p": 1, // 0
|
|
|
|
"dl": 2,
|
|
|
|
"h1": 2,
|
|
|
|
"h2": 2,
|
|
|
|
"h3": 2,
|
|
|
|
"h4": 2,
|
|
|
|
"h5": 2,
|
|
|
|
"h6": 2,
|
|
|
|
"ol": 2,
|
|
|
|
"ul": 2,
|
|
|
|
"del": 3, // 10
|
|
|
|
"div": 3,
|
|
|
|
"ins": 3, // 12
|
|
|
|
"pre": 3,
|
|
|
|
"form": 4,
|
|
|
|
"math": 4,
|
|
|
|
"table": 5,
|
|
|
|
"iframe": 6,
|
|
|
|
"script": 6,
|
|
|
|
"fieldset": 8,
|
|
|
|
"noscript": 8,
|
|
|
|
"blockquote": 10,
|
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
// functions for rendering parsed data
|
2011-05-25 06:14:35 +08:00
|
|
|
type mkd_renderer struct {
|
2011-05-26 03:59:30 +08:00
|
|
|
// block-level callbacks---nil skips the block
|
|
|
|
blockcode func(ob *bytes.Buffer, text []byte, lang string, opaque interface{})
|
|
|
|
blockquote func(ob *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
blockhtml func(ob *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
header func(ob *bytes.Buffer, text []byte, level int, opaque interface{})
|
|
|
|
hrule func(ob *bytes.Buffer, opaque interface{})
|
|
|
|
list func(ob *bytes.Buffer, text []byte, flags int, opaque interface{})
|
|
|
|
listitem func(ob *bytes.Buffer, text []byte, flags int, opaque interface{})
|
|
|
|
paragraph func(ob *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
table func(ob *bytes.Buffer, header []byte, body []byte, opaque interface{})
|
|
|
|
table_row func(ob *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
table_cell func(ob *bytes.Buffer, text []byte, flags int, opaque interface{})
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// span-level callbacks---nil or return 0 prints the span verbatim
|
2011-05-26 23:47:41 +08:00
|
|
|
autolink func(ob *bytes.Buffer, link []byte, kind int, opaque interface{}) int
|
|
|
|
codespan func(ob *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
double_emphasis func(ob *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
emphasis func(ob *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
image func(ob *bytes.Buffer, link []byte, title []byte, alt []byte, opaque interface{}) int
|
|
|
|
linebreak func(ob *bytes.Buffer, opaque interface{}) int
|
|
|
|
link func(ob *bytes.Buffer, link []byte, title []byte, content []byte, opaque interface{}) int
|
|
|
|
raw_html_tag func(ob *bytes.Buffer, tag []byte, opaque interface{}) int
|
|
|
|
triple_emphasis func(ob *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
strikethrough func(ob *bytes.Buffer, text []byte, opaque interface{}) int
|
2011-05-26 10:46:16 +08:00
|
|
|
|
|
|
|
// low-level callbacks---nil copies input directly into the output
|
|
|
|
entity func(ob *bytes.Buffer, entity []byte, opaque interface{})
|
|
|
|
normal_text func(ob *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
|
|
|
|
// header and footer
|
|
|
|
doc_header func(ob *bytes.Buffer, opaque interface{})
|
|
|
|
doc_footer func(ob *bytes.Buffer, opaque interface{})
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
// user data---passed back to every callback
|
|
|
|
opaque interface{}
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
type link_ref struct {
|
|
|
|
id []byte
|
|
|
|
link []byte
|
|
|
|
title []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
type link_ref_array []*link_ref
|
|
|
|
|
|
|
|
// implement the sorting interface
|
|
|
|
func (elt link_ref_array) Len() int {
|
|
|
|
return len(elt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (elt link_ref_array) Less(i, j int) bool {
|
2011-05-27 04:22:59 +08:00
|
|
|
return byteslice_less(elt[i].id, elt[j].id)
|
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-05-27 04:22:59 +08:00
|
|
|
func byteslice_less(a []byte, b []byte) bool {
|
2011-05-26 10:46:16 +08:00
|
|
|
// adapted from bytes.Compare in stdlib
|
|
|
|
m := len(a)
|
|
|
|
if m > len(b) {
|
|
|
|
m = len(b)
|
|
|
|
}
|
|
|
|
for i, ac := range a[0:m] {
|
|
|
|
// do a case-insensitive comparison
|
|
|
|
ai, bi := unicode.ToLower(int(ac)), unicode.ToLower(int(b[i]))
|
|
|
|
switch {
|
|
|
|
case ai > bi:
|
|
|
|
return false
|
|
|
|
case ai < bi:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case len(a) < len(b):
|
|
|
|
return true
|
|
|
|
case len(a) > len(b):
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (elt link_ref_array) Swap(i, j int) {
|
|
|
|
elt[i], elt[j] = elt[j], elt[i]
|
|
|
|
}
|
|
|
|
|
2011-05-26 22:28:14 +08:00
|
|
|
// returns whether or not a line is a reference
|
2011-05-26 10:46:16 +08:00
|
|
|
func is_ref(data []byte, beg int, last *int, rndr *render) bool {
|
2011-05-26 22:28:14 +08:00
|
|
|
// up to 3 optional leading spaces
|
|
|
|
if beg+3 > len(data) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i := 0
|
|
|
|
if data[beg] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[beg+1] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[beg+2] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[beg+3] == ' ' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i += beg
|
|
|
|
|
|
|
|
// id part: anything but a newline between brackets
|
|
|
|
if data[i] != '[' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
id_offset := i
|
|
|
|
for i < len(data) && data[i] != '\n' && data[i] != '\r' && data[i] != ']' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) || data[i] != ']' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
id_end := i
|
|
|
|
|
|
|
|
// spacer: colon (space | tab)* newline? (space | tab)*
|
|
|
|
i++
|
|
|
|
if i >= len(data) || data[i] != ':' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i < len(data) && (data[i] == '\n' || data[i] == '\r') {
|
|
|
|
i++
|
|
|
|
if i < len(data) && data[i] == '\r' && data[i-1] == '\n' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// link: whitespace-free sequence, optionally between angle brackets
|
|
|
|
if data[i] == '<' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
link_offset := i
|
|
|
|
for i < len(data) && data[i] != ' ' && data[i] != '\t' && data[i] != '\n' && data[i] != '\r' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
var link_end int
|
|
|
|
if data[i-1] == '>' {
|
|
|
|
link_end = i - 1
|
|
|
|
} else {
|
|
|
|
link_end = i
|
|
|
|
}
|
|
|
|
|
|
|
|
// optional spacer: (space | tab)* (newline | '\'' | '"' | '(' )
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i < len(data) && data[i] != '\n' && data[i] != '\r' && data[i] != '\'' && data[i] != '"' && data[i] != '(' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// compute end-of-line
|
|
|
|
line_end := 0
|
|
|
|
if i >= len(data) || data[i] == '\r' || data[i] == '\n' {
|
|
|
|
line_end = i
|
|
|
|
}
|
|
|
|
if i+1 < len(data) && data[i] == '\n' && data[i+1] == '\r' {
|
|
|
|
line_end = i + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// optional (space|tab)* spacer after a newline
|
|
|
|
if line_end > 0 {
|
|
|
|
i = line_end + 1
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// optional title: any non-newline sequence enclosed in '"() alone on its line
|
|
|
|
title_offset, title_end := 0, 0
|
|
|
|
if i+1 < len(data) && (data[i] == '\'' || data[i] == '"' || data[i] == '(') {
|
|
|
|
i++
|
|
|
|
title_offset = i
|
|
|
|
|
|
|
|
// looking for EOL
|
|
|
|
for i < len(data) && data[i] != '\n' && data[i] != '\r' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i+1 < len(data) && data[i] == '\n' && data[i+1] == '\r' {
|
|
|
|
title_end = i + 1
|
|
|
|
} else {
|
|
|
|
title_end = i
|
|
|
|
}
|
|
|
|
|
|
|
|
// stepping back
|
|
|
|
i--
|
|
|
|
for i > title_offset && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i--
|
|
|
|
}
|
|
|
|
if i > title_offset && (data[i] == '\'' || data[i] == '"' || data[i] == ')') {
|
|
|
|
line_end = title_end
|
|
|
|
title_end = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if line_end == 0 { // garbage after the link
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// a valid ref has been found; fill in return structures
|
|
|
|
if last != nil {
|
|
|
|
*last = line_end
|
|
|
|
}
|
|
|
|
if rndr == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
item := &link_ref{id: data[id_offset:id_end], link: data[link_offset:link_end], title: data[title_offset:title_end]}
|
|
|
|
rndr.refs = append(rndr.refs, item)
|
|
|
|
|
|
|
|
return true
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
type render struct {
|
2011-05-26 10:46:16 +08:00
|
|
|
mk *mkd_renderer
|
|
|
|
refs link_ref_array
|
|
|
|
active_char [256]int
|
|
|
|
ext_flags uint32
|
|
|
|
nesting int
|
|
|
|
max_nesting int
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
const (
|
|
|
|
MD_CHAR_NONE = iota
|
|
|
|
MD_CHAR_EMPHASIS
|
|
|
|
MD_CHAR_CODESPAN
|
|
|
|
MD_CHAR_LINEBREAK
|
|
|
|
MD_CHAR_LINK
|
|
|
|
MD_CHAR_LANGLE
|
|
|
|
MD_CHAR_ESCAPE
|
|
|
|
MD_CHAR_ENTITITY
|
|
|
|
MD_CHAR_AUTOLINK
|
|
|
|
)
|
|
|
|
|
|
|
|
// closures to render active chars, each:
|
|
|
|
// returns the number of chars taken care of
|
|
|
|
// data is the complete block being rendered
|
|
|
|
// offset is the number of valid chars before the data
|
2011-05-26 23:47:41 +08:00
|
|
|
//
|
|
|
|
// Note: this is filled in in Markdown to prevent an initilization loop
|
|
|
|
var markdown_char_ptrs [9]func(ob *bytes.Buffer, rndr *render, data []byte, offset int) int
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
func parse_inline(ob *bytes.Buffer, rndr *render, data []byte) {
|
|
|
|
if rndr.nesting >= rndr.max_nesting {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rndr.nesting++
|
|
|
|
|
|
|
|
i, end := 0, 0
|
|
|
|
for i < len(data) {
|
|
|
|
// copy inactive chars into the output
|
|
|
|
for end < len(data) && rndr.active_char[data[end]] == 0 {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.normal_text != nil {
|
2011-05-27 12:27:33 +08:00
|
|
|
rndr.mk.normal_text(ob, data[i:end], rndr.mk.opaque)
|
2011-05-26 10:46:16 +08:00
|
|
|
} else {
|
2011-05-27 12:27:33 +08:00
|
|
|
ob.Write(data[i:end])
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if end >= len(data) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
i = end
|
|
|
|
|
|
|
|
// call the trigger
|
|
|
|
action := rndr.active_char[data[end]]
|
|
|
|
end = markdown_char_ptrs[action](ob, rndr, data, i)
|
|
|
|
|
|
|
|
if end == 0 { // no action from the callback
|
|
|
|
end = i + 1
|
|
|
|
} else {
|
|
|
|
i += end
|
|
|
|
end = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rndr.nesting--
|
|
|
|
}
|
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
// single and double emphasis parsing
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_emphasis(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-26 23:47:41 +08:00
|
|
|
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 '~~'
|
2011-05-28 03:38:10 +08:00
|
|
|
if c == '~' || isspace(data[1]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if ret = parse_emph1(ob, rndr, data[1:], c); ret == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(data) > 3 && data[1] == c && data[2] != c {
|
2011-05-28 03:38:10 +08:00
|
|
|
if isspace(data[2]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if ret = parse_emph2(ob, rndr, data[2:], c); ret == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret + 2
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(data) > 4 && data[1] == c && data[2] == c && data[3] != c {
|
2011-05-28 03:38:10 +08:00
|
|
|
if c == '~' || isspace(data[3]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if ret = parse_emph3(ob, rndr, data, 3, c); ret == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret + 3
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func char_codespan(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 02:10:16 +08:00
|
|
|
|
|
|
|
nb := 0
|
|
|
|
|
|
|
|
// counting the number of backticks in the delimiter
|
|
|
|
for nb < len(data) && data[nb] == '`' {
|
|
|
|
nb++
|
|
|
|
}
|
|
|
|
|
|
|
|
// finding 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 {
|
2011-05-27 12:27:33 +08:00
|
|
|
if rndr.mk.codespan(ob, data[f_begin:f_end], rndr.mk.opaque) == 0 {
|
2011-05-27 02:10:16 +08:00
|
|
|
end = 0
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if rndr.mk.codespan(ob, nil, rndr.mk.opaque) == 0 {
|
|
|
|
end = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return end
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
// '\n' preceded by two spaces
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_linebreak(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-27 02:10:16 +08:00
|
|
|
if offset < 2 || data[offset-1] != ' ' || data[offset-2] != ' ' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove trailing spaces from ob and render
|
|
|
|
ob_bytes := ob.Bytes()
|
|
|
|
end := len(ob_bytes)
|
|
|
|
for end > 0 && ob_bytes[end-1] == ' ' {
|
|
|
|
end--
|
|
|
|
}
|
|
|
|
ob.Truncate(end)
|
|
|
|
|
|
|
|
if rndr.mk.linebreak == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if rndr.mk.linebreak(ob, rndr.mk.opaque) > 0 {
|
|
|
|
return 1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-27 04:22:59 +08:00
|
|
|
// '[': parsing a link or an image
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_link(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-27 04:22:59 +08:00
|
|
|
is_img := offset > 0 && data[offset-1] == '!'
|
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 04:22:59 +08:00
|
|
|
|
|
|
|
i := 1
|
|
|
|
var title, link []byte
|
|
|
|
text_has_nl := false
|
|
|
|
|
|
|
|
// checking whether the correct renderer exists
|
|
|
|
if (is_img && rndr.mk.image == nil) || (!is_img && rndr.mk.link == nil) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// looking 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--
|
2011-05-28 03:38:10 +08:00
|
|
|
if level <= 0 {
|
|
|
|
i-- // compensate for extra i++ in for loop
|
|
|
|
}
|
2011-05-27 04:22:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i >= len(data) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
txt_e := i
|
|
|
|
i++
|
|
|
|
|
|
|
|
// skip any amount of whitespace or newline
|
2011-05-28 03:38:10 +08:00
|
|
|
// (this is much more lax than original markdown syntax)
|
|
|
|
for i < len(data) && isspace(data[i]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
// inline style link
|
|
|
|
switch {
|
|
|
|
case i < len(data) && data[i] == '(':
|
|
|
|
// skipping initial whitespace
|
|
|
|
i++
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(data) && isspace(data[i]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
link_b := i
|
|
|
|
|
|
|
|
// looking 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
|
|
|
|
|
|
|
|
// looking 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// skipping whitespaces after title
|
|
|
|
title_e = i - 1
|
2011-05-28 03:38:10 +08:00
|
|
|
for title_e > title_b && isspace(data[title_e]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
title_e--
|
|
|
|
}
|
|
|
|
|
|
|
|
// checking 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
|
2011-05-28 03:38:10 +08:00
|
|
|
for link_e > link_b && isspace(data[link_e-1]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
link_e--
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove optional angle brackets around the link
|
|
|
|
if data[link_b] == '<' {
|
|
|
|
link_b++
|
|
|
|
}
|
|
|
|
if data[link_e-1] == '>' {
|
|
|
|
link_e--
|
|
|
|
}
|
|
|
|
|
|
|
|
// building 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
|
|
|
|
|
|
|
|
// looking 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 link_ref
|
|
|
|
if link_b == link_e {
|
|
|
|
if text_has_nl {
|
|
|
|
b := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
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 link_ref with matching id
|
2011-05-28 06:12:21 +08:00
|
|
|
index := sortDotSearch(len(rndr.refs), func(i int) bool {
|
2011-05-28 03:38:10 +08:00
|
|
|
return !byteslice_less(rndr.refs[i].id, id)
|
|
|
|
})
|
2011-05-27 04:22:59 +08:00
|
|
|
if index >= len(rndr.refs) || !bytes.Equal(rndr.refs[index].id, id) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
lr := rndr.refs[index]
|
|
|
|
|
|
|
|
// keep link and title from link_ref
|
|
|
|
link = lr.link
|
|
|
|
title = lr.title
|
|
|
|
i++
|
|
|
|
|
|
|
|
// shortcut reference style link
|
|
|
|
default:
|
|
|
|
var id []byte
|
|
|
|
|
|
|
|
// crafting the id
|
|
|
|
if text_has_nl {
|
|
|
|
b := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
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 link_ref with matching id
|
2011-05-28 06:12:21 +08:00
|
|
|
index := sortDotSearch(len(rndr.refs), func(i int) bool {
|
2011-05-28 03:38:10 +08:00
|
|
|
return !byteslice_less(rndr.refs[i].id, id)
|
|
|
|
})
|
2011-05-27 04:22:59 +08:00
|
|
|
if index >= len(rndr.refs) || !bytes.Equal(rndr.refs[index].id, id) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
lr := rndr.refs[index]
|
|
|
|
|
|
|
|
// keep link and title from link_ref
|
|
|
|
link = lr.link
|
|
|
|
title = lr.title
|
|
|
|
|
|
|
|
// rewinding the whitespace
|
|
|
|
i = txt_e + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// building content: img alt is escaped, link content is parsed
|
|
|
|
content := bytes.NewBuffer(nil)
|
|
|
|
if txt_e > 1 {
|
|
|
|
if is_img {
|
|
|
|
content.Write(data[1:txt_e])
|
|
|
|
} else {
|
|
|
|
parse_inline(content, rndr, data[1:txt_e])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var u_link []byte
|
|
|
|
if len(link) > 0 {
|
|
|
|
u_link_buf := bytes.NewBuffer(nil)
|
|
|
|
unscape_text(u_link_buf, link)
|
|
|
|
u_link = u_link_buf.Bytes()
|
|
|
|
}
|
|
|
|
|
|
|
|
// calling the relevant rendering function
|
|
|
|
ret := 0
|
|
|
|
if is_img {
|
|
|
|
ob_size := ob.Len()
|
|
|
|
ob_bytes := ob.Bytes()
|
|
|
|
if ob_size > 0 && ob_bytes[ob_size-1] == '!' {
|
|
|
|
ob.Truncate(ob_size - 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = rndr.mk.image(ob, u_link, title, content.Bytes(), rndr.mk.opaque)
|
|
|
|
} else {
|
|
|
|
ret = rndr.mk.link(ob, u_link, title, content.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret > 0 {
|
|
|
|
return i
|
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
// '<' when tags or autolinks are allowed
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_langle_tag(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 02:10:16 +08:00
|
|
|
altype := MKDA_NOT_AUTOLINK
|
|
|
|
end := tag_length(data, &altype)
|
|
|
|
ret := 0
|
|
|
|
|
|
|
|
if end > 2 {
|
|
|
|
switch {
|
|
|
|
case rndr.mk.autolink != nil && altype != MKDA_NOT_AUTOLINK:
|
|
|
|
u_link := bytes.NewBuffer(nil)
|
2011-05-28 06:12:21 +08:00
|
|
|
unscape_text(u_link, data[1:end+1-2])
|
2011-05-27 02:10:16 +08:00
|
|
|
ret = rndr.mk.autolink(ob, u_link.Bytes(), altype, rndr.mk.opaque)
|
|
|
|
case rndr.mk.raw_html_tag != nil:
|
|
|
|
ret = rndr.mk.raw_html_tag(ob, data[:end], rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return end
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
// '\\' backslash escape
|
|
|
|
var escape_chars = []byte("\\`*_{}[]()#+-.!:|&<>")
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_escape(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 02:10:16 +08:00
|
|
|
|
|
|
|
if len(data) > 1 {
|
|
|
|
if bytes.IndexByte(escape_chars, data[1]) < 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.normal_text != nil {
|
|
|
|
rndr.mk.normal_text(ob, data[1:2], rndr.mk.opaque)
|
|
|
|
} else {
|
|
|
|
ob.WriteByte(data[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 2
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
// '&' escaped when it doesn't belong to an entity
|
|
|
|
// valid entities are assumed to be anything matching &#?[A-Za-z0-9]+;
|
2011-05-26 10:46:16 +08:00
|
|
|
func char_entity(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 02:10:16 +08:00
|
|
|
|
|
|
|
end := 1
|
|
|
|
|
|
|
|
if end < len(data) && data[end] == '#' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for end < len(data) && isalnum(data[end]) {
|
2011-05-27 02:10:16 +08:00
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
if end < len(data) && data[end] == ';' {
|
|
|
|
end++ // real entity
|
|
|
|
} else {
|
|
|
|
return 0 // lone '&'
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.entity != nil {
|
|
|
|
rndr.mk.entity(ob, data[:end], rndr.mk.opaque)
|
|
|
|
} else {
|
|
|
|
ob.Write(data[:end])
|
|
|
|
}
|
|
|
|
|
|
|
|
return end
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func char_autolink(ob *bytes.Buffer, rndr *render, data []byte, offset int) int {
|
2011-05-27 04:22:59 +08:00
|
|
|
orig_data := data
|
2011-05-26 23:47:41 +08:00
|
|
|
data = data[offset:]
|
2011-05-27 04:22:59 +08:00
|
|
|
|
|
|
|
if offset > 0 {
|
2011-05-28 03:38:10 +08:00
|
|
|
if !isspace(orig_data[offset-1]) && !ispunct(orig_data[offset-1]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !is_safe_link(data) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
link_end := 0
|
2011-05-28 03:38:10 +08:00
|
|
|
for link_end < len(data) && !isspace(data[link_end]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
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 + 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--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.autolink != nil {
|
|
|
|
u_link := bytes.NewBuffer(nil)
|
|
|
|
unscape_text(u_link, data[:link_end])
|
|
|
|
|
|
|
|
rndr.mk.autolink(ob, u_link.Bytes(), MKDA_NORMAL, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
return link_end
|
|
|
|
}
|
|
|
|
|
|
|
|
var valid_uris = [][]byte{[]byte("http://"), []byte("https://"), []byte("ftp://"), []byte("mailto://")}
|
|
|
|
|
|
|
|
func is_safe_link(link []byte) bool {
|
|
|
|
for _, prefix := range valid_uris {
|
2011-05-28 03:38:10 +08:00
|
|
|
if len(link) > len(prefix) && !byteslice_less(link[:len(prefix)], prefix) && !byteslice_less(prefix, link[:len(prefix)]) && isalnum(link[len(prefix)]) {
|
2011-05-27 04:22:59 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
2011-05-26 23:47:41 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 04:22:59 +08:00
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
// taken from regexp in the stdlib
|
2011-05-28 03:38:10 +08:00
|
|
|
func ispunct(c byte) bool {
|
|
|
|
for _, r := range []byte("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~") {
|
2011-05-26 23:47:41 +08:00
|
|
|
if c == r {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2011-05-28 06:12:21 +08:00
|
|
|
// this is sort.Search, reproduced here because an older
|
|
|
|
// version of the library had a bug
|
|
|
|
func sortDotSearch(n int, f func(int) bool) int {
|
|
|
|
// Define f(-1) == false and f(n) == true.
|
|
|
|
// Invariant: f(i-1) == false, f(j) == true.
|
|
|
|
i, j := 0, n
|
|
|
|
for i < j {
|
|
|
|
h := i + (j-i)/2 // avoid overflow when computing h
|
|
|
|
// i ≤ h < j
|
|
|
|
if !f(h) {
|
|
|
|
i = h + 1 // preserves f(i-1) == false
|
|
|
|
} else {
|
|
|
|
j = h // preserves f(j) == true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// i == j, f(i-1) == false, and f(j) (= f(i)) == true => answer is i.
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
func isspace(c byte) bool {
|
|
|
|
return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f' || c == '\v'
|
|
|
|
}
|
|
|
|
|
|
|
|
func isalnum(c byte) bool {
|
|
|
|
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
|
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
// return the length of the given tag, or 0 is it's not valid
|
|
|
|
func tag_length(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
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
if !isalnum(data[i]) {
|
2011-05-27 02:10:16 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// scheme test
|
|
|
|
*autolink = MKDA_NOT_AUTOLINK
|
|
|
|
|
|
|
|
// try to find the beggining of an URI
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(data) && (isalnum(data[i]) || data[i] == '.' || data[i] == '+' || data[i] == '-') {
|
2011-05-27 02:10:16 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > 1 && data[i] == '@' {
|
|
|
|
if j = is_mail_autolink(data[i:]); j != 0 {
|
|
|
|
*autolink = MKDA_EMAIL
|
|
|
|
return i + j
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > 2 && data[i] == ':' {
|
|
|
|
*autolink = MKDA_NORMAL
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
// complete autolink test: no whitespace or ' or "
|
|
|
|
switch {
|
|
|
|
case i >= len(data):
|
|
|
|
*autolink = MKDA_NOT_AUTOLINK
|
|
|
|
case *autolink != 0:
|
|
|
|
j = i
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
if data[i] == '\\' {
|
|
|
|
i += 2
|
|
|
|
} else {
|
2011-05-28 03:38:10 +08:00
|
|
|
if data[i] == '>' || data[i] == '\'' || data[i] == '"' || isspace(data[i]) {
|
2011-05-27 02:10:16 +08:00
|
|
|
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 = MKDA_NOT_AUTOLINK
|
|
|
|
}
|
|
|
|
|
|
|
|
// looking for sometinhg 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 is_mail_autolink(data []byte) int {
|
|
|
|
nb := 0
|
|
|
|
|
|
|
|
// address is assumed to be: [-@._a-zA-Z0-9]+ with exactly one '@'
|
|
|
|
for i := 0; i < len(data); i++ {
|
2011-05-28 03:38:10 +08:00
|
|
|
if isalnum(data[i]) {
|
2011-05-27 02:10:16 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
switch data[i] {
|
|
|
|
case '@':
|
|
|
|
nb++
|
|
|
|
|
|
|
|
case '-', '.', '_':
|
|
|
|
break
|
|
|
|
|
|
|
|
case '>':
|
|
|
|
if nb == 1 {
|
|
|
|
return i + 1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
// look for the next emph char, skipping other constructs
|
|
|
|
func find_emph_char(data []byte, c byte) int {
|
|
|
|
i := 1
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
for i < len(data) && data[i] != c && data[i] != '`' && data[i] != '[' {
|
|
|
|
i++
|
|
|
|
}
|
2011-05-27 12:27:33 +08:00
|
|
|
if i >= len(data) {
|
|
|
|
return 0
|
|
|
|
}
|
2011-05-26 23:47:41 +08:00
|
|
|
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++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
func parse_emph1(ob *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 := find_emph_char(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
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
if data[i] == c && !isspace(data[i-1]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
|
|
|
|
if rndr.ext_flags&MKDEXT_NO_INTRA_EMPHASIS != 0 {
|
2011-05-28 03:38:10 +08:00
|
|
|
if !(i+1 == len(data) || isspace(data[i+1]) || ispunct(data[i+1])) {
|
2011-05-26 23:47:41 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(work, rndr, data[:i])
|
|
|
|
r := rndr.mk.emphasis(ob, work.Bytes(), rndr.mk.opaque)
|
|
|
|
if r > 0 {
|
|
|
|
return i + 1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_emph2(ob *bytes.Buffer, rndr *render, data []byte, c byte) int {
|
|
|
|
render_method := rndr.mk.double_emphasis
|
|
|
|
if c == '~' {
|
|
|
|
render_method = rndr.mk.strikethrough
|
|
|
|
}
|
|
|
|
|
|
|
|
if render_method == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
length := find_emph_char(data[i:], c)
|
|
|
|
if length == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
i += length
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
if i+1 < len(data) && data[i] == c && data[i+1] == c && i > 0 && !isspace(data[i-1]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(work, rndr, data[:i])
|
|
|
|
r := render_method(ob, work.Bytes(), rndr.mk.opaque)
|
|
|
|
if r > 0 {
|
|
|
|
return i + 2
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_emph3(ob *bytes.Buffer, rndr *render, data []byte, offset int, c byte) int {
|
|
|
|
i := 0
|
|
|
|
orig_data := data
|
|
|
|
data = data[offset:]
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
length := find_emph_char(data[i:], c)
|
|
|
|
if length == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
i += length
|
|
|
|
|
|
|
|
// skip whitespace preceded symbols
|
2011-05-28 03:38:10 +08:00
|
|
|
if data[i] != c || isspace(data[i-1]) {
|
2011-05-26 23:47:41 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case (i+2 < len(data) && data[i+1] == c && data[i+2] == c && rndr.mk.triple_emphasis != nil):
|
|
|
|
// triple symbol found
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
parse_inline(work, rndr, data[:i])
|
|
|
|
r := rndr.mk.triple_emphasis(ob, 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, handing over to emph1
|
|
|
|
length = parse_emph1(ob, rndr, orig_data[offset-2:], c)
|
|
|
|
if length == 0 {
|
|
|
|
return 0
|
|
|
|
} else {
|
|
|
|
return length - 2
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// single symbol found, handing over to emph2
|
|
|
|
length = parse_emph2(ob, rndr, orig_data[offset-1:], c)
|
|
|
|
if length == 0 {
|
|
|
|
return 0
|
|
|
|
} else {
|
|
|
|
return length - 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
// parse block-level data
|
|
|
|
func parse_block(ob *bytes.Buffer, rndr *render, data []byte) {
|
2011-05-26 10:46:16 +08:00
|
|
|
if rndr.nesting >= rndr.max_nesting {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rndr.nesting++
|
2011-05-26 03:59:30 +08:00
|
|
|
|
|
|
|
for len(data) > 0 {
|
|
|
|
if is_atxheader(rndr, data) {
|
|
|
|
data = data[parse_atxheader(ob, rndr, data):]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if data[0] == '<' && rndr.mk.blockhtml != nil {
|
|
|
|
if i := parse_htmlblock(ob, rndr, data, true); i > 0 {
|
|
|
|
data = data[i:]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if i := is_empty(data); i > 0 {
|
|
|
|
data = data[i:]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if is_hrule(data) {
|
|
|
|
if rndr.mk.hrule != nil {
|
|
|
|
rndr.mk.hrule(ob, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
var i int
|
|
|
|
for i = 0; i < len(data) && data[i] != '\n'; i++ {
|
|
|
|
}
|
|
|
|
data = data[i:]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if rndr.ext_flags&MKDEXT_FENCED_CODE != 0 {
|
|
|
|
if i := parse_fencedcode(ob, rndr, data); i > 0 {
|
|
|
|
data = data[i:]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if rndr.ext_flags&MKDEXT_TABLES != 0 {
|
|
|
|
if i := parse_table(ob, rndr, data); i > 0 {
|
|
|
|
data = data[i:]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if prefix_quote(data) > 0 {
|
|
|
|
data = data[parse_blockquote(ob, rndr, data):]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if prefix_code(data) > 0 {
|
|
|
|
data = data[parse_blockcode(ob, rndr, data):]
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if prefix_uli(data) > 0 {
|
|
|
|
data = data[parse_list(ob, rndr, data, 0):]
|
|
|
|
continue
|
|
|
|
}
|
2011-05-26 06:00:01 +08:00
|
|
|
if prefix_oli(data) > 0 {
|
|
|
|
data = data[parse_list(ob, rndr, data, MKD_LIST_ORDERED):]
|
|
|
|
continue
|
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2011-05-26 05:41:25 +08:00
|
|
|
data = data[parse_paragraph(ob, rndr, data):]
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
|
|
|
|
rndr.nesting--
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
func is_atxheader(rndr *render, data []byte) bool {
|
|
|
|
if data[0] != '#' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.ext_flags&MKDEXT_SPACE_HEADERS != 0 {
|
|
|
|
level := 0
|
|
|
|
for level < len(data) && level < 6 && data[level] == '#' {
|
|
|
|
level++
|
|
|
|
}
|
|
|
|
if level < len(data) && data[level] != ' ' && data[level] != '\t' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_atxheader(ob *bytes.Buffer, rndr *render, data []byte) int {
|
|
|
|
level := 0
|
|
|
|
for level < len(data) && level < 6 && data[level] == '#' {
|
|
|
|
level++
|
|
|
|
}
|
|
|
|
i, end := 0, 0
|
|
|
|
for i = level; i < len(data) && (data[i] == ' ' || data[i] == '\t'); i++ {
|
|
|
|
}
|
|
|
|
for end = i; end < len(data) && data[end] != '\n'; end++ {
|
|
|
|
}
|
|
|
|
skip := end
|
|
|
|
for end > 0 && data[end-1] == '#' {
|
|
|
|
end--
|
|
|
|
}
|
|
|
|
for end > 0 && (data[end-1] == ' ' || data[end-1] == '\t') {
|
|
|
|
end--
|
|
|
|
}
|
|
|
|
if end > i {
|
2011-05-26 03:59:30 +08:00
|
|
|
work := bytes.NewBuffer(nil)
|
2011-05-25 06:14:35 +08:00
|
|
|
parse_inline(work, rndr, data[i:end])
|
2011-05-26 03:59:30 +08:00
|
|
|
if rndr.mk.header != nil {
|
|
|
|
rndr.mk.header(ob, work.Bytes(), level, rndr.mk.opaque)
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return skip
|
|
|
|
}
|
|
|
|
|
2011-05-26 05:41:25 +08:00
|
|
|
func is_headerline(data []byte) int {
|
2011-05-26 06:00:01 +08:00
|
|
|
i := 0
|
|
|
|
|
|
|
|
// test of level 1 header
|
|
|
|
if data[i] == '=' {
|
|
|
|
for i = 1; i < len(data) && data[i] == '='; i++ {
|
|
|
|
}
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) || data[i] == '\n' {
|
|
|
|
return 1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test of level 2 header
|
|
|
|
if data[i] == '-' {
|
|
|
|
for i = 1; i < len(data) && data[i] == '-'; i++ {
|
|
|
|
}
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) || data[i] == '\n' {
|
|
|
|
return 2
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
func parse_htmlblock(ob *bytes.Buffer, rndr *render, data []byte, do_render bool) int {
|
|
|
|
var i, j int
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// identify the opening tag
|
2011-05-25 06:14:35 +08:00
|
|
|
if len(data) < 2 || data[0] != '<' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
curtag, tagfound := find_block_tag(data[1:])
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// handle special cases
|
2011-05-25 06:14:35 +08:00
|
|
|
if !tagfound {
|
|
|
|
|
|
|
|
// HTML comment, laxist form
|
|
|
|
if len(data) > 5 && data[1] == '!' && data[2] == '-' && data[3] == '-' {
|
|
|
|
i = 5
|
|
|
|
|
|
|
|
for i < len(data) && !(data[i-2] == '-' && data[i-1] == '-' && data[i] == '>') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
|
|
|
|
if i < len(data) {
|
|
|
|
j = is_empty(data[i:])
|
|
|
|
}
|
|
|
|
|
|
|
|
if j > 0 {
|
|
|
|
size := i + j
|
2011-05-26 03:59:30 +08:00
|
|
|
if do_render && rndr.mk.blockhtml != nil {
|
|
|
|
rndr.mk.blockhtml(ob, data[:size], rndr.mk.opaque)
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
return size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// HR, which is the only self-closing block tag considered
|
2011-05-28 06:12:21 +08:00
|
|
|
if len(data) > 4 && (data[1] == 'h' || data[1] == 'H') && (data[2] == 'r' || data[2] == 'R') {
|
2011-05-25 06:14:35 +08:00
|
|
|
i = 3
|
|
|
|
for i < len(data) && data[i] != '>' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i+1 < len(data) {
|
|
|
|
i++
|
|
|
|
j = is_empty(data[i:])
|
|
|
|
if j > 0 {
|
|
|
|
size := i + j
|
2011-05-26 03:59:30 +08:00
|
|
|
if do_render && rndr.mk.blockhtml != nil {
|
|
|
|
rndr.mk.blockhtml(ob, data[:size], rndr.mk.opaque)
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
return size
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no special case recognized
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// look for an unindented matching closing tag
|
2011-05-25 06:14:35 +08:00
|
|
|
// followed by a blank line
|
|
|
|
i = 1
|
|
|
|
found := false
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// if not found, try a second pass looking for indented match
|
2011-05-26 03:59:30 +08:00
|
|
|
// but not if tag is "ins" or "del" (following original Markdown.pl)
|
2011-05-25 06:14:35 +08:00
|
|
|
if curtag != "ins" && curtag != "del" {
|
|
|
|
i = 1
|
|
|
|
for i < len(data) {
|
|
|
|
i++
|
|
|
|
for i < len(data) && !(data[i-1] == '<' && data[i] == '/') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i+2+len(curtag) >= len(data) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
j = htmlblock_end(curtag, rndr, data[i-1:])
|
|
|
|
|
|
|
|
if j > 0 {
|
|
|
|
i += j - 1
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// the end of the block has been found
|
2011-05-26 03:59:30 +08:00
|
|
|
if do_render && rndr.mk.blockhtml != nil {
|
|
|
|
rndr.mk.blockhtml(ob, data[:i], rndr.mk.opaque)
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func find_block_tag(data []byte) (string, bool) {
|
|
|
|
i := 0
|
|
|
|
for i < len(data) && ((data[i] >= '0' && data[i] <= '9') || (data[i] >= 'A' && data[i] <= 'Z') || (data[i] >= 'a' && data[i] <= 'z')) {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) {
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
key := string(data[:i])
|
|
|
|
if _, ok := block_tags[key]; ok {
|
|
|
|
return key, true
|
|
|
|
}
|
|
|
|
return "", false
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func htmlblock_end(tag string, rndr *render, data []byte) int {
|
2011-05-26 10:46:16 +08:00
|
|
|
// assume data[0] == '<' && data[1] == '/' already tested
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// check if tag is a match
|
2011-05-26 03:59:30 +08:00
|
|
|
if len(tag)+3 >= len(data) || bytes.Compare(data[2:2+len(tag)], []byte(tag)) != 0 || data[len(tag)+2] != '>' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// check white lines
|
2011-05-26 03:59:30 +08:00
|
|
|
i := len(tag) + 3
|
|
|
|
w := 0
|
|
|
|
if i < len(data) {
|
|
|
|
if w = is_empty(data[i:]); w == 0 {
|
|
|
|
return 0 // non-blank after tag
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
i += w
|
|
|
|
w = 0
|
|
|
|
|
|
|
|
if rndr.ext_flags&MKDEXT_LAX_HTML_BLOCKS != 0 {
|
|
|
|
if i < len(data) {
|
|
|
|
w = is_empty(data[i:])
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
} else {
|
|
|
|
if i < len(data) {
|
|
|
|
if w = is_empty(data[i:]); w == 0 {
|
|
|
|
return 0 // non-blank line after tag line
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
|
|
|
|
return i + w
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func is_empty(data []byte) int {
|
|
|
|
var i int
|
|
|
|
for i = 0; i < len(data) && data[i] != '\n'; i++ {
|
|
|
|
if data[i] != ' ' && data[i] != '\t' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return i + 1
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func is_hrule(data []byte) bool {
|
2011-05-26 10:46:16 +08:00
|
|
|
// skip initial spaces
|
2011-05-26 03:59:30 +08:00
|
|
|
if len(data) < 3 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i := 0
|
|
|
|
if data[0] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[1] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[2] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// look at the hrule char
|
2011-05-26 03:59:30 +08:00
|
|
|
if i+2 >= len(data) || (data[i] != '*' && data[i] != '-' && data[i] != '_') {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
c := data[i]
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
// the whole line must be the char or whitespace
|
|
|
|
n := 0
|
|
|
|
for i < len(data) && data[i] != '\n' {
|
|
|
|
switch {
|
|
|
|
case data[i] == c:
|
|
|
|
n++
|
|
|
|
case data[i] != ' ' && data[i] != '\t':
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
return n >= 3
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func is_codefence(data []byte, syntax **string) int {
|
|
|
|
i, n := 0, 0
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// skip initial spaces
|
2011-05-26 03:59:30 +08:00
|
|
|
if len(data) < 3 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if data[0] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[1] == ' ' {
|
|
|
|
i++
|
|
|
|
if data[2] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// look at the hrule char
|
2011-05-26 03:59:30 +08:00
|
|
|
if i+2 >= len(data) || !(data[i] == '~' || data[i] == '`') {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
c := data[i]
|
|
|
|
|
|
|
|
// the whole line must be the char or whitespace
|
|
|
|
for i < len(data) && data[i] == c {
|
|
|
|
n++
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if n < 3 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if syntax != nil {
|
|
|
|
syn := 0
|
|
|
|
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
syntax_start := i
|
|
|
|
|
|
|
|
if i < len(data) && data[i] == '{' {
|
|
|
|
i++
|
|
|
|
syntax_start++
|
|
|
|
|
|
|
|
for i < len(data) && data[i] != '}' && data[i] != '\n' {
|
|
|
|
syn++
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(data) || data[i] != '}' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// string all whitespace at the beginning and the end
|
|
|
|
// of the {} block
|
2011-05-28 03:38:10 +08:00
|
|
|
for syn > 0 && isspace(data[syntax_start]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
syntax_start++
|
|
|
|
syn--
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for syn > 0 && isspace(data[syntax_start+syn-1]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
syn--
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
} else {
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(data) && !isspace(data[i]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
syn++
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
language := string(data[syntax_start : syntax_start+syn])
|
|
|
|
*syntax = &language
|
|
|
|
}
|
|
|
|
|
|
|
|
for i < len(data) && data[i] != '\n' {
|
2011-05-28 03:38:10 +08:00
|
|
|
if !isspace(data[i]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
return i + 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_fencedcode(ob *bytes.Buffer, rndr *render, data []byte) int {
|
|
|
|
var lang *string
|
|
|
|
beg := is_codefence(data, &lang)
|
|
|
|
if beg == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
for beg < len(data) {
|
|
|
|
fence_end := is_codefence(data[beg:], nil)
|
|
|
|
if fence_end != 0 {
|
|
|
|
beg += fence_end
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
var end int
|
|
|
|
for end = beg + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
|
|
}
|
|
|
|
|
|
|
|
if beg < end {
|
|
|
|
// verbatim copy to the working buffer, escaping entities
|
|
|
|
if is_empty(data[beg:]) > 0 {
|
|
|
|
work.WriteByte('\n')
|
|
|
|
} else {
|
|
|
|
work.Write(data[beg:end])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
|
|
|
|
if work.Len() > 0 && work.Bytes()[work.Len()-1] != '\n' {
|
|
|
|
work.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.blockcode != nil {
|
|
|
|
syntax := ""
|
|
|
|
if lang != nil {
|
|
|
|
syntax = *lang
|
|
|
|
}
|
|
|
|
|
|
|
|
rndr.mk.blockcode(ob, work.Bytes(), syntax, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
return beg
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_table(ob *bytes.Buffer, rndr *render, data []byte) int {
|
|
|
|
header_work := bytes.NewBuffer(nil)
|
|
|
|
i, columns, col_data := parse_table_header(header_work, rndr, data)
|
|
|
|
if i > 0 {
|
|
|
|
body_work := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
pipes, row_start := 0, i
|
|
|
|
for ; i < len(data) && data[i] != '\n'; i++ {
|
|
|
|
if data[i] == '|' {
|
|
|
|
pipes++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if pipes == 0 || i == len(data) {
|
|
|
|
i = row_start
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_table_row(body_work, rndr, data[row_start:i], columns, col_data)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.table != nil {
|
|
|
|
rndr.mk.table(ob, header_work.Bytes(), body_work.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_table_header(ob *bytes.Buffer, rndr *render, data []byte) (size int, columns int, column_data []int) {
|
|
|
|
i, pipes := 0, 0
|
|
|
|
column_data = []int{}
|
|
|
|
for i = 0; i < len(data) && data[i] != '\n'; i++ {
|
|
|
|
if data[i] == '|' {
|
|
|
|
pipes++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(data) || pipes == 0 {
|
|
|
|
return 0, 0, column_data
|
|
|
|
}
|
|
|
|
|
|
|
|
header_end := i
|
|
|
|
|
|
|
|
if data[0] == '|' {
|
|
|
|
pipes--
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > 2 && data[i-1] == '|' {
|
|
|
|
pipes--
|
|
|
|
}
|
|
|
|
|
|
|
|
columns = pipes + 1
|
|
|
|
column_data = make([]int, columns)
|
|
|
|
|
|
|
|
// parse the header underline
|
|
|
|
i++
|
|
|
|
if i < len(data) && data[i] == '|' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
under_end := i
|
|
|
|
for under_end < len(data) && data[under_end] != '\n' {
|
|
|
|
under_end++
|
|
|
|
}
|
|
|
|
|
|
|
|
col := 0
|
|
|
|
for ; col < columns && i < under_end; col++ {
|
|
|
|
dashes := 0
|
|
|
|
|
|
|
|
for i < under_end && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if data[i] == ':' {
|
|
|
|
i++
|
|
|
|
column_data[col] |= MKD_TABLE_ALIGN_L
|
|
|
|
dashes++
|
|
|
|
}
|
|
|
|
|
|
|
|
for i < under_end && data[i] == '-' {
|
|
|
|
i++
|
|
|
|
dashes++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < under_end && data[i] == ':' {
|
|
|
|
i++
|
|
|
|
column_data[col] |= MKD_TABLE_ALIGN_R
|
|
|
|
dashes++
|
|
|
|
}
|
|
|
|
|
|
|
|
for i < under_end && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < under_end && data[i] != '|' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if dashes < 3 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if col < columns {
|
|
|
|
return 0, 0, column_data
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_table_row(ob, rndr, data[:header_end], columns, column_data)
|
|
|
|
size = under_end + 1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_table_row(ob *bytes.Buffer, rndr *render, data []byte, columns int, col_data []int) {
|
|
|
|
i, col := 0, 0
|
|
|
|
row_work := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
if i < len(data) && data[i] == '|' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
for col = 0; col < columns && i < len(data); col++ {
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(data) && isspace(data[i]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_start := i
|
|
|
|
|
|
|
|
for i < len(data) && data[i] != '|' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_end := i - 1
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for cell_end > cell_start && isspace(data[cell_end]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
cell_end--
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_work := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(cell_work, rndr, data[cell_start:cell_end+1])
|
|
|
|
|
|
|
|
if rndr.mk.table_cell != nil {
|
|
|
|
cdata := 0
|
|
|
|
if col < len(col_data) {
|
|
|
|
cdata = col_data[col]
|
|
|
|
}
|
|
|
|
rndr.mk.table_cell(row_work, cell_work.Bytes(), cdata, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
for ; col < columns; col++ {
|
|
|
|
empty_cell := []byte{}
|
|
|
|
if rndr.mk.table_cell != nil {
|
|
|
|
cdata := 0
|
|
|
|
if col < len(col_data) {
|
|
|
|
cdata = col_data[col]
|
|
|
|
}
|
|
|
|
rndr.mk.table_cell(row_work, empty_cell, cdata, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.table_row != nil {
|
|
|
|
rndr.mk.table_row(ob, row_work.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns blockquote prefix length
|
|
|
|
func prefix_quote(data []byte) int {
|
|
|
|
i := 0
|
|
|
|
for i < len(data) && i < 3 && data[i] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i < len(data) && data[i] == '>' {
|
|
|
|
if i+1 < len(data) && (data[i+1] == ' ' || data[i+1] == '\t') {
|
|
|
|
return i + 2
|
|
|
|
}
|
|
|
|
return i + 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// handles parsing of a blockquote fragment
|
|
|
|
func parse_blockquote(ob *bytes.Buffer, rndr *render, data []byte) int {
|
|
|
|
out := bytes.NewBuffer(nil)
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
beg, end := 0, 0
|
|
|
|
for beg < len(data) {
|
|
|
|
for end = beg + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
|
|
}
|
|
|
|
|
|
|
|
if pre := prefix_quote(data[beg:]); pre > 0 {
|
2011-05-26 10:46:16 +08:00
|
|
|
beg += pre // skip prefix
|
2011-05-26 03:59:30 +08:00
|
|
|
} else {
|
|
|
|
// empty line followed by non-quote line
|
|
|
|
if is_empty(data[beg:]) > 0 && (end >= len(data) || (prefix_quote(data[end:]) == 0 && is_empty(data[end:]) == 0)) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if beg < end { // copy into the in-place working buffer
|
|
|
|
work.Write(data[beg:end])
|
|
|
|
}
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_block(out, rndr, work.Bytes())
|
|
|
|
if rndr.mk.blockquote != nil {
|
|
|
|
rndr.mk.blockquote(ob, out.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
return end
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns prefix length for block code
|
|
|
|
func prefix_code(data []byte) int {
|
|
|
|
if len(data) > 0 && data[0] == '\t' {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if len(data) > 3 && data[0] == ' ' && data[1] == ' ' && data[2] == ' ' && data[3] == ' ' {
|
|
|
|
return 4
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func parse_blockcode(ob *bytes.Buffer, rndr *render, data []byte) int {
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
|
|
|
|
beg, end := 0, 0
|
|
|
|
for beg < len(data) {
|
|
|
|
for end = beg + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
|
|
}
|
|
|
|
|
2011-05-28 06:12:21 +08:00
|
|
|
if pre := prefix_code(data[beg:end]); pre > 0 {
|
2011-05-26 03:59:30 +08:00
|
|
|
beg += pre
|
|
|
|
} else {
|
2011-05-28 06:12:21 +08:00
|
|
|
if is_empty(data[beg:end]) == 0 {
|
2011-05-26 03:59:30 +08:00
|
|
|
// non-empty non-prefixed line breaks the pre
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if beg < end {
|
|
|
|
// verbatim copy to the working buffer, escaping entities
|
2011-05-28 06:12:21 +08:00
|
|
|
if is_empty(data[beg:end]) > 0 {
|
2011-05-26 03:59:30 +08:00
|
|
|
work.WriteByte('\n')
|
|
|
|
} else {
|
2011-05-28 06:12:21 +08:00
|
|
|
work.Write(data[beg:end])
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
|
|
|
|
// trim all the \n off the end of work
|
|
|
|
workbytes := work.Bytes()
|
|
|
|
n := 0
|
|
|
|
for len(workbytes) > n && workbytes[len(workbytes)-n-1] == '\n' {
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
if n > 0 {
|
|
|
|
work = bytes.NewBuffer(workbytes[:len(workbytes)-n])
|
|
|
|
}
|
|
|
|
|
|
|
|
work.WriteByte('\n')
|
|
|
|
|
|
|
|
if rndr.mk.blockcode != nil {
|
|
|
|
rndr.mk.blockcode(ob, work.Bytes(), "", rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
return beg
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns unordered list item prefix
|
|
|
|
func prefix_uli(data []byte) int {
|
|
|
|
i := 0
|
|
|
|
for i < len(data) && i < 3 && data[i] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i+1 >= len(data) || (data[i] != '*' && data[i] != '+' && data[i] != '-') || (data[i+1] != ' ' && data[i+1] != '\t') {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return i + 2
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns ordered list item prefix
|
|
|
|
func prefix_oli(data []byte) int {
|
|
|
|
i := 0
|
|
|
|
for i < len(data) && i < 3 && data[i] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) || data[i] < '0' || data[i] > '9' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
for i < len(data) && data[i] >= '0' && data[i] <= '9' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i+1 >= len(data) || data[i] != '.' || (data[i+1] != ' ' && data[i+1] != '\t') {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return i + 2
|
|
|
|
}
|
|
|
|
|
|
|
|
// parsing ordered or unordered list block
|
|
|
|
func parse_list(ob *bytes.Buffer, rndr *render, data []byte, flags int) int {
|
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
|
2011-05-26 06:00:01 +08:00
|
|
|
i, j := 0, 0
|
2011-05-26 03:59:30 +08:00
|
|
|
for i < len(data) {
|
2011-05-26 10:46:16 +08:00
|
|
|
j = parse_listitem(work, rndr, data[i:], &flags)
|
2011-05-26 03:59:30 +08:00
|
|
|
i += j
|
|
|
|
|
|
|
|
if j == 0 || flags&MKD_LI_END != 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.list != nil {
|
|
|
|
rndr.mk.list(ob, work.Bytes(), flags, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// parse a single list item
|
|
|
|
// assumes initial prefix is already removed
|
|
|
|
func parse_listitem(ob *bytes.Buffer, rndr *render, data []byte, flags *int) int {
|
|
|
|
// keep track of the first indentation prefix
|
2011-05-26 05:41:25 +08:00
|
|
|
beg, end, pre, sublist, orgpre, i := 0, 0, 0, 0, 0, 0
|
2011-05-26 03:59:30 +08:00
|
|
|
|
|
|
|
for orgpre < 3 && orgpre < len(data) && data[orgpre] == ' ' {
|
|
|
|
orgpre++
|
|
|
|
}
|
|
|
|
|
2011-05-26 05:41:25 +08:00
|
|
|
beg = prefix_uli(data)
|
|
|
|
if beg == 0 {
|
|
|
|
beg = prefix_oli(data)
|
|
|
|
}
|
|
|
|
if beg == 0 {
|
2011-05-26 10:46:16 +08:00
|
|
|
return 0
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// skip to the beginning of the following line
|
2011-05-26 05:41:25 +08:00
|
|
|
end = beg
|
|
|
|
for end < len(data) && data[end-1] != '\n' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// get working buffers
|
2011-05-26 05:41:25 +08:00
|
|
|
work := bytes.NewBuffer(nil)
|
|
|
|
inter := bytes.NewBuffer(nil)
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// put the first line into the working buffer
|
2011-05-26 05:41:25 +08:00
|
|
|
work.Write(data[beg:end])
|
|
|
|
beg = end
|
|
|
|
|
|
|
|
// process the following lines
|
|
|
|
in_empty, has_inside_empty := false, false
|
|
|
|
for beg < len(data) {
|
|
|
|
end++
|
|
|
|
|
|
|
|
for end < len(data) && data[end-1] != '\n' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
// process an empty line
|
|
|
|
if is_empty(data[beg:end]) > 0 {
|
|
|
|
in_empty = true
|
|
|
|
beg = end
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// calculate the indentation
|
2011-05-26 05:41:25 +08:00
|
|
|
i = 0
|
|
|
|
for i < 4 && beg+i < end && data[beg+i] == ' ' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
pre = i
|
|
|
|
if data[beg] == '\t' {
|
|
|
|
i = 1
|
|
|
|
pre = 8
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// check for a new item
|
2011-05-26 05:41:25 +08:00
|
|
|
chunk := data[beg+i : end]
|
|
|
|
if (prefix_uli(chunk) > 0 && !is_hrule(chunk)) || prefix_oli(chunk) > 0 {
|
|
|
|
if in_empty {
|
|
|
|
has_inside_empty = true
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
if pre == orgpre { // the following item must have the same indentation
|
|
|
|
break
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if sublist == 0 {
|
|
|
|
sublist = work.Len()
|
|
|
|
}
|
|
|
|
} else {
|
2011-05-26 10:46:16 +08:00
|
|
|
// only join indented stuff after empty lines
|
2011-05-26 05:41:25 +08:00
|
|
|
if in_empty && i < 4 && data[beg] != '\t' {
|
2011-05-26 10:46:16 +08:00
|
|
|
*flags |= MKD_LI_END
|
2011-05-26 05:41:25 +08:00
|
|
|
break
|
|
|
|
} else {
|
|
|
|
if in_empty {
|
|
|
|
work.WriteByte('\n')
|
|
|
|
has_inside_empty = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
in_empty = false
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// add the line into the working buffer without prefix
|
2011-05-26 05:41:25 +08:00
|
|
|
work.Write(data[beg+i : end])
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// render li contents
|
2011-05-26 05:41:25 +08:00
|
|
|
if has_inside_empty {
|
2011-05-26 10:46:16 +08:00
|
|
|
*flags |= MKD_LI_BLOCK
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
workbytes := work.Bytes()
|
2011-05-26 10:46:16 +08:00
|
|
|
if *flags&MKD_LI_BLOCK != 0 {
|
2011-05-26 05:41:25 +08:00
|
|
|
// intermediate render of block li
|
|
|
|
if sublist > 0 && sublist < len(workbytes) {
|
|
|
|
parse_block(inter, rndr, workbytes[:sublist])
|
|
|
|
parse_block(inter, rndr, workbytes[sublist:])
|
|
|
|
} else {
|
|
|
|
parse_block(inter, rndr, workbytes)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// intermediate render of inline li
|
|
|
|
if sublist > 0 && sublist < len(workbytes) {
|
|
|
|
parse_inline(inter, rndr, workbytes[:sublist])
|
2011-05-28 06:12:21 +08:00
|
|
|
parse_block(inter, rndr, workbytes[sublist:])
|
2011-05-26 05:41:25 +08:00
|
|
|
} else {
|
|
|
|
parse_inline(inter, rndr, workbytes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// render li itself
|
2011-05-26 05:41:25 +08:00
|
|
|
if rndr.mk.listitem != nil {
|
2011-05-26 10:46:16 +08:00
|
|
|
rndr.mk.listitem(ob, inter.Bytes(), *flags, rndr.mk.opaque)
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
return beg
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 05:41:25 +08:00
|
|
|
func parse_paragraph(ob *bytes.Buffer, rndr *render, data []byte) int {
|
2011-05-26 06:00:01 +08:00
|
|
|
i, end, level := 0, 0, 0
|
|
|
|
|
|
|
|
for i < len(data) {
|
|
|
|
for end = i + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_empty(data[i:]) > 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if level = is_headerline(data[i:]); level > 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.ext_flags&MKDEXT_LAX_HTML_BLOCKS != 0 {
|
|
|
|
if data[i] == '<' && rndr.mk.blockhtml != nil && parse_htmlblock(ob, rndr, data[i:], false) > 0 {
|
|
|
|
end = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_atxheader(rndr, data[i:]) || is_hrule(data[i:]) {
|
|
|
|
end = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
i = end
|
|
|
|
}
|
|
|
|
|
|
|
|
work := data
|
|
|
|
size := i
|
|
|
|
for size > 0 && work[size-1] == '\n' {
|
|
|
|
size--
|
|
|
|
}
|
|
|
|
|
|
|
|
if level == 0 {
|
|
|
|
tmp := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(tmp, rndr, work[:size])
|
|
|
|
if rndr.mk.paragraph != nil {
|
|
|
|
rndr.mk.paragraph(ob, tmp.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if size > 0 {
|
|
|
|
beg := 0
|
|
|
|
i = size
|
|
|
|
size--
|
|
|
|
|
|
|
|
for size > 0 && work[size] != '\n' {
|
|
|
|
size--
|
|
|
|
}
|
|
|
|
|
|
|
|
beg = size + 1
|
|
|
|
for size > 0 && work[size-1] == '\n' {
|
|
|
|
size--
|
|
|
|
}
|
|
|
|
|
|
|
|
if size > 0 {
|
|
|
|
tmp := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(tmp, rndr, work[:size])
|
|
|
|
if rndr.mk.paragraph != nil {
|
|
|
|
rndr.mk.paragraph(ob, tmp.Bytes(), rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
work = work[beg:]
|
|
|
|
size = i - beg
|
|
|
|
} else {
|
|
|
|
size = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
header_work := bytes.NewBuffer(nil)
|
|
|
|
parse_inline(header_work, rndr, work[:size])
|
|
|
|
|
|
|
|
if rndr.mk.header != nil {
|
|
|
|
rndr.mk.header(ob, header_work.Bytes(), level, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return end
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// HTML rendering
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
const (
|
2011-05-25 06:14:35 +08:00
|
|
|
HTML_SKIP_HTML = 1 << iota
|
|
|
|
HTML_SKIP_STYLE
|
|
|
|
HTML_SKIP_IMAGES
|
|
|
|
HTML_SKIP_LINKS
|
|
|
|
HTML_EXPAND_TABS
|
|
|
|
HTML_SAFELINK
|
|
|
|
HTML_TOC
|
|
|
|
HTML_HARD_WRAP
|
|
|
|
HTML_GITHUB_BLOCKCODE
|
|
|
|
HTML_USE_XHTML
|
|
|
|
)
|
|
|
|
|
|
|
|
type html_renderopts struct {
|
|
|
|
toc_data struct {
|
|
|
|
header_count int
|
|
|
|
current_level int
|
|
|
|
}
|
|
|
|
flags uint32
|
|
|
|
close_tag string
|
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func attr_escape(ob *bytes.Buffer, src []byte) {
|
2011-05-28 06:12:21 +08:00
|
|
|
for i := 0; i < len(src); i++ {
|
|
|
|
// directly copy unescaped characters
|
|
|
|
org := i
|
|
|
|
for i < len(src) && src[i] != '<' && src[i] != '>' && src[i] != '&' && src[i] != '"' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i > org {
|
|
|
|
ob.Write(src[org:i])
|
|
|
|
}
|
|
|
|
|
|
|
|
// escaping
|
|
|
|
if i >= len(src) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
switch src[i] {
|
|
|
|
case '<':
|
|
|
|
ob.WriteString("<")
|
|
|
|
case '>':
|
|
|
|
ob.WriteString(">")
|
|
|
|
case '&':
|
|
|
|
ob.WriteString("&")
|
|
|
|
case '"':
|
|
|
|
ob.WriteString(""")
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 02:10:16 +08:00
|
|
|
func unscape_text(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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
func rndr_header(ob *bytes.Buffer, text []byte, level int, opaque interface{}) {
|
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.flags&HTML_TOC != 0 {
|
|
|
|
ob.WriteString(fmt.Sprintf("<h%d id=\"toc_%d\">", level, options.toc_data.header_count))
|
|
|
|
options.toc_data.header_count++
|
|
|
|
} else {
|
|
|
|
ob.WriteString(fmt.Sprintf("<h%d>", level))
|
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
ob.Write(text)
|
2011-05-25 06:14:35 +08:00
|
|
|
ob.WriteString(fmt.Sprintf("</h%d>\n", level))
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_raw_block(ob *bytes.Buffer, text []byte, opaque interface{}) {
|
|
|
|
sz := len(text)
|
|
|
|
for sz > 0 && text[sz-1] == '\n' {
|
|
|
|
sz--
|
|
|
|
}
|
|
|
|
org := 0
|
|
|
|
for org < sz && text[org] == '\n' {
|
|
|
|
org++
|
|
|
|
}
|
|
|
|
if org >= sz {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
ob.Write(text[org:sz])
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_hrule(ob *bytes.Buffer, opaque interface{}) {
|
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
ob.WriteString("<hr")
|
|
|
|
ob.WriteString(options.close_tag)
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_blockcode(ob *bytes.Buffer, text []byte, lang string, opaque interface{}) {
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
if lang != "" {
|
|
|
|
ob.WriteString("<pre><code class=\"")
|
|
|
|
|
|
|
|
for i, cls := 0, 0; i < len(lang); i, cls = i+1, cls+1 {
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(lang) && isspace(lang[i]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < len(lang) {
|
|
|
|
org := i
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(lang) && !isspace(lang[i]) {
|
2011-05-26 03:59:30 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if lang[org] == '.' {
|
|
|
|
org++
|
|
|
|
}
|
|
|
|
|
|
|
|
if cls > 0 {
|
|
|
|
ob.WriteByte(' ')
|
|
|
|
}
|
|
|
|
attr_escape(ob, []byte(lang[org:]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("\">")
|
|
|
|
} else {
|
|
|
|
ob.WriteString("<pre><code>")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(text) > 0 {
|
|
|
|
attr_escape(ob, text)
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("</code></pre>\n")
|
|
|
|
}
|
|
|
|
|
2011-05-27 12:27:33 +08:00
|
|
|
func rndr_blockquote(ob *bytes.Buffer, text []byte, opaque interface{}) {
|
|
|
|
ob.WriteString("<blockquote>\n")
|
|
|
|
ob.Write(text)
|
2011-05-28 06:12:21 +08:00
|
|
|
ob.WriteString("</blockquote>")
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
func rndr_table(ob *bytes.Buffer, header []byte, body []byte, opaque interface{}) {
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
ob.WriteString("<table><thead>\n")
|
|
|
|
ob.Write(header)
|
|
|
|
ob.WriteString("\n</thead><tbody>\n")
|
|
|
|
ob.Write(body)
|
|
|
|
ob.WriteString("\n</tbody></table>")
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_tablerow(ob *bytes.Buffer, text []byte, opaque interface{}) {
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
ob.WriteString("<tr>\n")
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("\n</tr>")
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_tablecell(ob *bytes.Buffer, text []byte, align int, opaque interface{}) {
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
switch align {
|
|
|
|
case MKD_TABLE_ALIGN_L:
|
|
|
|
ob.WriteString("<td align=\"left\">")
|
|
|
|
case MKD_TABLE_ALIGN_R:
|
|
|
|
ob.WriteString("<td align=\"right\">")
|
|
|
|
case MKD_TABLE_ALIGN_CENTER:
|
|
|
|
ob.WriteString("<td align=\"center\">")
|
|
|
|
default:
|
|
|
|
ob.WriteString("<td>")
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("</td>")
|
|
|
|
}
|
|
|
|
|
2011-05-26 05:41:25 +08:00
|
|
|
func rndr_list(ob *bytes.Buffer, text []byte, flags int, opaque interface{}) {
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
if flags&MKD_LIST_ORDERED != 0 {
|
|
|
|
ob.WriteString("<ol>\n")
|
|
|
|
} else {
|
|
|
|
ob.WriteString("<ul>\n")
|
|
|
|
}
|
|
|
|
ob.Write(text)
|
|
|
|
if flags&MKD_LIST_ORDERED != 0 {
|
|
|
|
ob.WriteString("</ol>\n")
|
|
|
|
} else {
|
|
|
|
ob.WriteString("</ul>\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_listitem(ob *bytes.Buffer, text []byte, flags int, opaque interface{}) {
|
|
|
|
ob.WriteString("<li>")
|
|
|
|
size := len(text)
|
|
|
|
for size > 0 && text[size-1] == '\n' {
|
|
|
|
size--
|
|
|
|
}
|
|
|
|
ob.Write(text[:size])
|
|
|
|
ob.WriteString("</li>\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_paragraph(ob *bytes.Buffer, text []byte, opaque interface{}) {
|
|
|
|
options := opaque.(*html_renderopts)
|
2011-05-26 06:00:01 +08:00
|
|
|
i := 0
|
|
|
|
|
|
|
|
if ob.Len() > 0 {
|
|
|
|
ob.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(text) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(text) && isspace(text[i]) {
|
2011-05-26 06:00:01 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(text) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("<p>")
|
|
|
|
if options.flags&HTML_HARD_WRAP != 0 {
|
|
|
|
for i < len(text) {
|
|
|
|
org := i
|
|
|
|
for i < len(text) && text[i] != '\n' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > org {
|
|
|
|
ob.Write(text[org:i])
|
|
|
|
}
|
|
|
|
|
|
|
|
if i >= len(text) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("<br>")
|
|
|
|
ob.WriteString(options.close_tag)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ob.Write(text[i:])
|
|
|
|
}
|
|
|
|
ob.WriteString("</p>\n")
|
2011-05-26 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
func rndr_autolink(ob *bytes.Buffer, link []byte, kind int, opaque interface{}) int {
|
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
|
|
|
|
if len(link) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if options.flags&HTML_SAFELINK != 0 && !is_safe_link(link) && kind != MKDA_EMAIL {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("<a href=\"")
|
|
|
|
if kind == MKDA_EMAIL {
|
|
|
|
ob.WriteString("mailto:")
|
|
|
|
}
|
|
|
|
ob.Write(link)
|
|
|
|
ob.WriteString("\">")
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pretty printing: if we get an email address as
|
|
|
|
* an actual URI, e.g. `mailto:foo@bar.com`, we don't
|
|
|
|
* want to print the `mailto:` prefix
|
|
|
|
*/
|
|
|
|
if bytes.HasPrefix(link, []byte("mailto:")) {
|
|
|
|
attr_escape(ob, link[7:])
|
|
|
|
} else {
|
|
|
|
attr_escape(ob, link)
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("</a>")
|
|
|
|
|
2011-05-27 12:27:33 +08:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_codespan(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
|
|
|
ob.WriteString("<code>")
|
|
|
|
attr_escape(ob, text)
|
|
|
|
ob.WriteString("</code>")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_double_emphasis(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
|
|
|
if len(text) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
ob.WriteString("<strong>")
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("</strong>")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2011-05-27 04:22:59 +08:00
|
|
|
func rndr_emphasis(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
2011-05-27 12:27:33 +08:00
|
|
|
if len(text) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
ob.WriteString("<em>")
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("</em>")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_image(ob *bytes.Buffer, link []byte, title []byte, alt []byte, opaque interface{}) int {
|
2011-05-28 03:38:10 +08:00
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
if len(link) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
ob.WriteString("<img src=\"")
|
|
|
|
attr_escape(ob, link)
|
|
|
|
ob.WriteString("\" alt=\"")
|
|
|
|
if len(alt) > 0 {
|
|
|
|
attr_escape(ob, alt)
|
|
|
|
}
|
|
|
|
if len(title) > 0 {
|
|
|
|
ob.WriteString("\" title=\"")
|
|
|
|
attr_escape(ob, title)
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteByte('"')
|
|
|
|
ob.WriteString(options.close_tag)
|
2011-05-27 12:27:33 +08:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_linebreak(ob *bytes.Buffer, opaque interface{}) int {
|
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
ob.WriteString("<br")
|
|
|
|
ob.WriteString(options.close_tag)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_link(ob *bytes.Buffer, link []byte, title []byte, content []byte, opaque interface{}) int {
|
2011-05-28 03:38:10 +08:00
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
|
|
|
|
if options.flags&HTML_SAFELINK != 0 && !is_safe_link(link) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ob.WriteString("<a href=\"")
|
|
|
|
if len(link) > 0 {
|
|
|
|
ob.Write(link)
|
|
|
|
}
|
|
|
|
if len(title) > 0 {
|
|
|
|
ob.WriteString("\" title=\"")
|
|
|
|
attr_escape(ob, title)
|
|
|
|
}
|
|
|
|
ob.WriteString("\">")
|
|
|
|
if len(content) > 0 {
|
|
|
|
ob.Write(content)
|
|
|
|
}
|
|
|
|
ob.WriteString("</a>")
|
2011-05-27 12:27:33 +08:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_raw_html_tag(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
|
|
|
options := opaque.(*html_renderopts)
|
|
|
|
if options.flags&HTML_SKIP_HTML != 0 {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if options.flags&HTML_SKIP_STYLE != 0 && is_html_tag(text, "style") {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if options.flags&HTML_SKIP_LINKS != 0 && is_html_tag(text, "a") {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if options.flags&HTML_SKIP_IMAGES != 0 && is_html_tag(text, "img") {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
ob.Write(text)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_triple_emphasis(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
|
|
|
if len(text) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
ob.WriteString("<strong><em>")
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("</em></strong>")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func rndr_strikethrough(ob *bytes.Buffer, text []byte, opaque interface{}) int {
|
|
|
|
if len(text) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
ob.WriteString("<del>")
|
|
|
|
ob.Write(text)
|
|
|
|
ob.WriteString("</del>")
|
|
|
|
return 1
|
2011-05-27 04:22:59 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 12:27:33 +08:00
|
|
|
func rndr_normal_text(ob *bytes.Buffer, text []byte, opaque interface{}) {
|
|
|
|
attr_escape(ob, text)
|
|
|
|
}
|
|
|
|
|
|
|
|
func is_html_tag(tag []byte, tagname string) bool {
|
|
|
|
i := 0
|
|
|
|
if i < len(tag) && tag[0] != '<' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
i++
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(tag) && isspace(tag[i]) {
|
2011-05-27 12:27:33 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < len(tag) && tag[i] == '/' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
for i < len(tag) && isspace(tag[i]) {
|
2011-05-27 12:27:33 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
tag_i := i
|
|
|
|
for ; i < len(tag); i, tag_i = i+1, tag_i+1 {
|
|
|
|
if tag_i >= len(tagname) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if tag[i] != tagname[tag_i] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(tag) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2011-05-28 03:38:10 +08:00
|
|
|
return isspace(tag[i]) || tag[i] == '>'
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
2011-05-28 06:12:21 +08:00
|
|
|
// Public interface
|
2011-05-27 12:27:33 +08:00
|
|
|
//
|
|
|
|
//
|
2011-05-26 05:41:25 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
func expand_tabs(ob *bytes.Buffer, line []byte) {
|
|
|
|
i, tab := 0, 0
|
|
|
|
|
|
|
|
for i < len(line) {
|
|
|
|
org := i
|
|
|
|
for i < len(line) && line[i] != '\t' {
|
|
|
|
i++
|
|
|
|
tab++
|
|
|
|
}
|
|
|
|
|
|
|
|
if i > org {
|
|
|
|
ob.Write(line[org:i])
|
|
|
|
}
|
|
|
|
|
|
|
|
if i >= len(line) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
ob.WriteByte(' ')
|
|
|
|
tab++
|
|
|
|
if tab%4 == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
func Markdown(ob *bytes.Buffer, ib []byte, rndrer *mkd_renderer, extensions uint32) {
|
|
|
|
// no point in parsing if we can't render
|
2011-05-26 03:59:30 +08:00
|
|
|
if rndrer == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-05-26 23:47:41 +08:00
|
|
|
// fill in the character-level parsers
|
|
|
|
markdown_char_ptrs[MD_CHAR_NONE] = nil
|
|
|
|
markdown_char_ptrs[MD_CHAR_EMPHASIS] = char_emphasis
|
|
|
|
markdown_char_ptrs[MD_CHAR_CODESPAN] = char_codespan
|
|
|
|
markdown_char_ptrs[MD_CHAR_LINEBREAK] = char_linebreak
|
|
|
|
markdown_char_ptrs[MD_CHAR_LINK] = char_link
|
|
|
|
markdown_char_ptrs[MD_CHAR_LANGLE] = char_langle_tag
|
|
|
|
markdown_char_ptrs[MD_CHAR_ESCAPE] = char_escape
|
|
|
|
markdown_char_ptrs[MD_CHAR_ENTITITY] = char_entity
|
|
|
|
markdown_char_ptrs[MD_CHAR_AUTOLINK] = char_autolink
|
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
// fill in the render structure
|
|
|
|
rndr := new(render)
|
|
|
|
rndr.mk = rndrer
|
|
|
|
rndr.ext_flags = extensions
|
|
|
|
rndr.max_nesting = 16
|
|
|
|
|
|
|
|
if rndr.mk.emphasis != nil || rndr.mk.double_emphasis != nil || rndr.mk.triple_emphasis != nil {
|
|
|
|
rndr.active_char['*'] = MD_CHAR_EMPHASIS
|
|
|
|
rndr.active_char['_'] = MD_CHAR_EMPHASIS
|
|
|
|
if extensions&MKDEXT_STRIKETHROUGH != 0 {
|
|
|
|
rndr.active_char['~'] = MD_CHAR_EMPHASIS
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if rndr.mk.codespan != nil {
|
|
|
|
rndr.active_char['`'] = MD_CHAR_CODESPAN
|
|
|
|
}
|
|
|
|
if rndr.mk.linebreak != nil {
|
|
|
|
rndr.active_char['\n'] = MD_CHAR_LINEBREAK
|
|
|
|
}
|
|
|
|
if rndr.mk.image != nil || rndr.mk.link != nil {
|
|
|
|
rndr.active_char['['] = MD_CHAR_LINK
|
|
|
|
}
|
|
|
|
rndr.active_char['<'] = MD_CHAR_LANGLE
|
|
|
|
rndr.active_char['\\'] = MD_CHAR_ESCAPE
|
|
|
|
rndr.active_char['&'] = MD_CHAR_ENTITITY
|
|
|
|
|
|
|
|
if extensions&MKDEXT_AUTOLINK != 0 {
|
|
|
|
rndr.active_char['h'] = MD_CHAR_AUTOLINK // http, https
|
|
|
|
rndr.active_char['H'] = MD_CHAR_AUTOLINK
|
|
|
|
|
|
|
|
rndr.active_char['f'] = MD_CHAR_AUTOLINK // ftp
|
|
|
|
rndr.active_char['F'] = MD_CHAR_AUTOLINK
|
|
|
|
|
|
|
|
rndr.active_char['m'] = MD_CHAR_AUTOLINK // mailto
|
|
|
|
rndr.active_char['M'] = MD_CHAR_AUTOLINK
|
|
|
|
}
|
|
|
|
|
|
|
|
// first pass: look for references, copying everything else
|
2011-05-26 22:28:14 +08:00
|
|
|
text := bytes.NewBuffer(nil)
|
2011-05-26 10:46:16 +08:00
|
|
|
beg, end := 0, 0
|
|
|
|
for beg < len(ib) { // iterate over lines
|
|
|
|
if is_ref(ib, beg, &end, rndr) {
|
|
|
|
beg = end
|
|
|
|
} else { // skip to the next line
|
|
|
|
end = beg
|
|
|
|
for end < len(ib) && ib[end] != '\n' && ib[end] != '\r' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
// add the line body if present
|
|
|
|
if end > beg {
|
|
|
|
expand_tabs(text, ib[beg:end])
|
|
|
|
}
|
|
|
|
|
|
|
|
for end < len(ib) && (ib[end] == '\n' || ib[end] == '\r') {
|
|
|
|
// add one \n per newline
|
|
|
|
if ib[end] == '\n' || (end+1 < len(ib) && ib[end+1] != '\n') {
|
|
|
|
text.WriteByte('\n')
|
|
|
|
}
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort the reference array
|
|
|
|
if len(rndr.refs) > 1 {
|
|
|
|
sort.Sort(rndr.refs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// second pass: actual rendering
|
|
|
|
if rndr.mk.doc_header != nil {
|
|
|
|
rndr.mk.doc_header(ob, rndr.mk.opaque)
|
|
|
|
}
|
|
|
|
|
|
|
|
if text.Len() > 0 {
|
|
|
|
// add a final newline if not already present
|
|
|
|
finalchar := text.Bytes()[text.Len()-1]
|
|
|
|
if finalchar != '\n' && finalchar != '\r' {
|
|
|
|
text.WriteByte('\n')
|
|
|
|
}
|
|
|
|
parse_block(ob, rndr, text.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.mk.doc_footer != nil {
|
|
|
|
rndr.mk.doc_footer(ob, rndr.mk.opaque)
|
|
|
|
}
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2011-05-26 10:46:16 +08:00
|
|
|
if rndr.nesting != 0 {
|
|
|
|
panic("Nesting level did not end at zero")
|
|
|
|
}
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-28 06:12:21 +08:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
// configure the rendering engine
|
|
|
|
rndrer := new(mkd_renderer)
|
|
|
|
rndrer.blockcode = rndr_blockcode
|
|
|
|
rndrer.blockquote = rndr_blockquote
|
|
|
|
rndrer.blockhtml = rndr_raw_block
|
|
|
|
rndrer.header = rndr_header
|
|
|
|
rndrer.hrule = rndr_hrule
|
|
|
|
rndrer.list = rndr_list
|
|
|
|
rndrer.listitem = rndr_listitem
|
|
|
|
rndrer.paragraph = rndr_paragraph
|
|
|
|
rndrer.table = rndr_table
|
|
|
|
rndrer.table_row = rndr_tablerow
|
|
|
|
rndrer.table_cell = rndr_tablecell
|
|
|
|
|
|
|
|
rndrer.autolink = rndr_autolink
|
|
|
|
rndrer.codespan = rndr_codespan
|
|
|
|
rndrer.double_emphasis = rndr_double_emphasis
|
|
|
|
rndrer.emphasis = rndr_emphasis
|
|
|
|
rndrer.image = rndr_image
|
|
|
|
rndrer.linebreak = rndr_linebreak
|
|
|
|
rndrer.link = rndr_link
|
|
|
|
rndrer.raw_html_tag = rndr_raw_html_tag
|
|
|
|
rndrer.triple_emphasis = rndr_triple_emphasis
|
|
|
|
rndrer.strikethrough = rndr_strikethrough
|
|
|
|
|
|
|
|
rndrer.normal_text = rndr_normal_text
|
|
|
|
|
|
|
|
rndrer.opaque = &html_renderopts{close_tag: ">\n"}
|
|
|
|
|
|
|
|
var extensions uint32
|
|
|
|
extensions |= MKDEXT_NO_INTRA_EMPHASIS
|
|
|
|
extensions |= MKDEXT_TABLES
|
|
|
|
extensions |= MKDEXT_FENCED_CODE
|
|
|
|
extensions |= MKDEXT_AUTOLINK
|
|
|
|
extensions |= MKDEXT_STRIKETHROUGH
|
|
|
|
extensions |= MKDEXT_LAX_HTML_BLOCKS
|
|
|
|
extensions |= MKDEXT_SPACE_HEADERS
|
|
|
|
|
|
|
|
// read the input
|
|
|
|
var ib []byte
|
|
|
|
var err os.Error
|
|
|
|
switch len(os.Args) {
|
|
|
|
case 1:
|
|
|
|
if ib, err = ioutil.ReadAll(os.Stdin); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "Error reading from Stdin:", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
case 2, 3:
|
|
|
|
if ib, err = ioutil.ReadFile(os.Args[1]); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "Error reading from", os.Args[1], ":", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
fmt.Fprintln(os.Stderr, "Usage:", os.Args[0], "[inputfile [outputfile]]")
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// call the main renderer function
|
|
|
|
ob := bytes.NewBuffer(nil)
|
|
|
|
Markdown(ob, ib, rndrer, extensions)
|
|
|
|
|
|
|
|
// output the result
|
|
|
|
if len(os.Args) == 3 {
|
|
|
|
if err = ioutil.WriteFile(os.Args[2], ob.Bytes(), 0644); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "Error writing to", os.Args[2], ":", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if _, err = os.Stdout.Write(ob.Bytes()); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, "Error writing to Stdout:", err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|