mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
1149 lines
22 KiB
Go
1149 lines
22 KiB
Go
//
|
|
// Blackfriday Markdown Processor
|
|
// Available at http://github.com/russross/blackfriday
|
|
//
|
|
// Copyright © 2011 Russ Ross <russ@russross.com>.
|
|
// Distributed under the Simplified BSD License.
|
|
// See README.md for details.
|
|
//
|
|
|
|
//
|
|
// Functions to parse block-level elements.
|
|
//
|
|
|
|
package blackfriday
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
// parse block-level data
|
|
func (parser *Parser) parseBlock(out *bytes.Buffer, data []byte) {
|
|
// this is called recursively: enforce a maximum depth
|
|
if parser.nesting >= parser.maxNesting {
|
|
return
|
|
}
|
|
parser.nesting++
|
|
|
|
// parse out one block-level construct at a time
|
|
for len(data) > 0 {
|
|
// prefixed header:
|
|
//
|
|
// # Header 1
|
|
// ## Header 2
|
|
// ...
|
|
// ###### Header 6
|
|
if parser.isPrefixHeader(data) {
|
|
data = data[parser.blockPrefixHeader(out, data):]
|
|
continue
|
|
}
|
|
|
|
// block of preformatted HTML:
|
|
//
|
|
// <div>
|
|
// ...
|
|
// </div>
|
|
if data[0] == '<' {
|
|
if i := parser.blockHtml(out, data, true); i > 0 {
|
|
data = data[i:]
|
|
continue
|
|
}
|
|
}
|
|
|
|
// blank lines. note: returns the # of bytes to skip
|
|
if i := parser.isEmpty(data); i > 0 {
|
|
data = data[i:]
|
|
continue
|
|
}
|
|
|
|
// horizontal rule:
|
|
//
|
|
// ------
|
|
// or
|
|
// ******
|
|
// or
|
|
// ______
|
|
if parser.isHRule(data) {
|
|
parser.r.HRule(out)
|
|
var i int
|
|
for i = 0; i < len(data) && data[i] != '\n'; i++ {
|
|
}
|
|
data = data[i:]
|
|
continue
|
|
}
|
|
|
|
// fenced code block:
|
|
//
|
|
// ``` go
|
|
// func fact(n int) int {
|
|
// if n <= 1 {
|
|
// return n
|
|
// }
|
|
// return n * fact(n-1)
|
|
// }
|
|
// ```
|
|
if parser.flags&EXTENSION_FENCED_CODE != 0 {
|
|
if i := parser.blockFencedCode(out, data); i > 0 {
|
|
data = data[i:]
|
|
continue
|
|
}
|
|
}
|
|
|
|
// table:
|
|
//
|
|
// Name | Age | Phone
|
|
// ------|-----|---------
|
|
// Bob | 31 | 555-1234
|
|
// Alice | 27 | 555-4321
|
|
if parser.flags&EXTENSION_TABLES != 0 {
|
|
if i := parser.blockTable(out, data); i > 0 {
|
|
data = data[i:]
|
|
continue
|
|
}
|
|
}
|
|
|
|
// block quote:
|
|
//
|
|
// > A big quote I found somewhere
|
|
// > on the web
|
|
if parser.blockQuotePrefix(data) > 0 {
|
|
data = data[parser.blockQuote(out, data):]
|
|
continue
|
|
}
|
|
|
|
// indented code block:
|
|
//
|
|
// func max(a, b int) int {
|
|
// if a > b {
|
|
// return a
|
|
// }
|
|
// return b
|
|
// }
|
|
if parser.blockCodePrefix(data) > 0 {
|
|
data = data[parser.blockCode(out, data):]
|
|
continue
|
|
}
|
|
|
|
// an itemized/unordered list:
|
|
//
|
|
// * Item 1
|
|
// * Item 2
|
|
//
|
|
// also works with + or -
|
|
if parser.blockUliPrefix(data) > 0 {
|
|
data = data[parser.blockList(out, data, 0):]
|
|
continue
|
|
}
|
|
|
|
// a numbered/ordered list:
|
|
//
|
|
// 1. Item 1
|
|
// 2. Item 2
|
|
if parser.blockOliPrefix(data) > 0 {
|
|
data = data[parser.blockList(out, data, LIST_TYPE_ORDERED):]
|
|
continue
|
|
}
|
|
|
|
// anything else must look like a normal paragraph
|
|
// note: this finds underlined headers, too
|
|
data = data[parser.blockParagraph(out, data):]
|
|
}
|
|
|
|
parser.nesting--
|
|
}
|
|
|
|
func (parser *Parser) isPrefixHeader(data []byte) bool {
|
|
if data[0] != '#' {
|
|
return false
|
|
}
|
|
|
|
if parser.flags&EXTENSION_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 (parser *Parser) blockPrefixHeader(out *bytes.Buffer, 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 {
|
|
work := func() bool {
|
|
parser.parseInline(out, data[i:end])
|
|
return true
|
|
}
|
|
parser.r.Header(out, work, level)
|
|
}
|
|
return skip
|
|
}
|
|
|
|
func (parser *Parser) isUnderlinedHeader(data []byte) int {
|
|
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
|
|
}
|
|
|
|
func (parser *Parser) blockHtml(out *bytes.Buffer, data []byte, doRender bool) int {
|
|
var i, j int
|
|
|
|
// identify the opening tag
|
|
if len(data) < 2 || data[0] != '<' {
|
|
return 0
|
|
}
|
|
curtag, tagfound := parser.blockHtmlFindTag(data[1:])
|
|
|
|
// handle special cases
|
|
if !tagfound {
|
|
|
|
// HTML comment, lax 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 = parser.isEmpty(data[i:])
|
|
}
|
|
|
|
if j > 0 {
|
|
size := i + j
|
|
if doRender {
|
|
parser.r.BlockHtml(out, data[:size])
|
|
}
|
|
return size
|
|
}
|
|
}
|
|
|
|
// HR, which is the only self-closing block tag considered
|
|
if len(data) > 4 &&
|
|
(data[1] == 'h' || data[1] == 'H') &&
|
|
(data[2] == 'r' || data[2] == 'R') {
|
|
|
|
i = 3
|
|
for i < len(data) && data[i] != '>' {
|
|
i++
|
|
}
|
|
|
|
if i+1 < len(data) {
|
|
i++
|
|
j = parser.isEmpty(data[i:])
|
|
if j > 0 {
|
|
size := i + j
|
|
if doRender {
|
|
parser.r.BlockHtml(out, data[:size])
|
|
}
|
|
return size
|
|
}
|
|
}
|
|
}
|
|
|
|
// no special case recognized
|
|
return 0
|
|
}
|
|
|
|
// look for an unindented matching closing tag
|
|
// followed by a blank line
|
|
i = 1
|
|
found := false
|
|
|
|
// if not found, try a second pass looking for indented match
|
|
// but not if tag is "ins" or "del" (following original Markdown.pl)
|
|
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 = parser.blockHtmlFindEnd(curtag, data[i-1:])
|
|
|
|
if j > 0 {
|
|
i += j - 1
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if !found {
|
|
return 0
|
|
}
|
|
|
|
// the end of the block has been found
|
|
if doRender {
|
|
parser.r.BlockHtml(out, data[:i])
|
|
}
|
|
|
|
return i
|
|
}
|
|
|
|
func (parser *Parser) blockHtmlFindTag(data []byte) (string, bool) {
|
|
i := 0
|
|
for i < len(data) && isalnum(data[i]) {
|
|
i++
|
|
}
|
|
if i >= len(data) {
|
|
return "", false
|
|
}
|
|
key := string(data[:i])
|
|
if blockTags[key] {
|
|
return key, true
|
|
}
|
|
return "", false
|
|
}
|
|
|
|
func (parser *Parser) blockHtmlFindEnd(tag string, data []byte) int {
|
|
// assume data[0] == '<' && data[1] == '/' already tested
|
|
|
|
// check if tag is a match
|
|
if len(data) < len(tag)+3 || data[len(tag)+2] != '>' ||
|
|
bytes.Compare(data[2:2+len(tag)], []byte(tag)) != 0 {
|
|
return 0
|
|
}
|
|
|
|
// check for blank line/eof after the closing tag
|
|
i := len(tag) + 3
|
|
w := 0
|
|
if i < len(data) {
|
|
if w = parser.isEmpty(data[i:]); w == 0 {
|
|
return 0 // non-blank after tag
|
|
}
|
|
}
|
|
i += w
|
|
w = 0
|
|
|
|
if parser.flags&EXTENSION_LAX_HTML_BLOCKS != 0 {
|
|
if i < len(data) {
|
|
w = parser.isEmpty(data[i:])
|
|
}
|
|
} else {
|
|
if i < len(data) {
|
|
if w = parser.isEmpty(data[i:]); w == 0 {
|
|
return 0 // non-blank line after tag line
|
|
}
|
|
}
|
|
}
|
|
|
|
return i + w
|
|
}
|
|
|
|
func (parser *Parser) isEmpty(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
|
|
}
|
|
|
|
func (parser *Parser) isHRule(data []byte) bool {
|
|
// skip initial spaces
|
|
if len(data) < 3 {
|
|
return false
|
|
}
|
|
i := 0
|
|
|
|
// skip up to three spaces
|
|
for i < 3 && data[i] == ' ' {
|
|
i++
|
|
}
|
|
|
|
// look at the hrule char
|
|
if i+2 >= len(data) || (data[i] != '*' && data[i] != '-' && data[i] != '_') {
|
|
return false
|
|
}
|
|
c := data[i]
|
|
|
|
// 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++
|
|
}
|
|
|
|
return n >= 3
|
|
}
|
|
|
|
func (parser *Parser) isFencedCode(data []byte, syntax **string, oldmarker string) (skip int, marker string) {
|
|
i, size := 0, 0
|
|
skip = 0
|
|
|
|
// skip initial spaces
|
|
if len(data) < 3 {
|
|
return
|
|
}
|
|
if data[0] == ' ' {
|
|
i++
|
|
if data[1] == ' ' {
|
|
i++
|
|
if data[2] == ' ' {
|
|
i++
|
|
}
|
|
}
|
|
}
|
|
|
|
// check for the marker characters: ~ or `
|
|
if i+2 >= len(data) || !(data[i] == '~' || data[i] == '`') {
|
|
return
|
|
}
|
|
|
|
c := data[i]
|
|
|
|
// the whole line must be the same char or whitespace
|
|
for i < len(data) && data[i] == c {
|
|
size++
|
|
i++
|
|
}
|
|
|
|
// the marker char must occur at least 3 times
|
|
if size < 3 {
|
|
return
|
|
}
|
|
marker = string(data[i-size : i])
|
|
|
|
// if this is the end marker, it must match the beginning marker
|
|
if oldmarker != "" && marker != oldmarker {
|
|
return
|
|
}
|
|
|
|
if syntax != nil {
|
|
syn := 0
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
i++
|
|
}
|
|
|
|
syntaxStart := i
|
|
|
|
if i < len(data) && data[i] == '{' {
|
|
i++
|
|
syntaxStart++
|
|
|
|
for i < len(data) && data[i] != '}' && data[i] != '\n' {
|
|
syn++
|
|
i++
|
|
}
|
|
|
|
if i == len(data) || data[i] != '}' {
|
|
return
|
|
}
|
|
|
|
// strip all whitespace at the beginning and the end
|
|
// of the {} block
|
|
for syn > 0 && isspace(data[syntaxStart]) {
|
|
syntaxStart++
|
|
syn--
|
|
}
|
|
|
|
for syn > 0 && isspace(data[syntaxStart+syn-1]) {
|
|
syn--
|
|
}
|
|
|
|
i++
|
|
} else {
|
|
for i < len(data) && !isspace(data[i]) {
|
|
syn++
|
|
i++
|
|
}
|
|
}
|
|
|
|
language := string(data[syntaxStart : syntaxStart+syn])
|
|
*syntax = &language
|
|
}
|
|
|
|
for ; i < len(data) && data[i] != '\n'; i++ {
|
|
if !isspace(data[i]) {
|
|
return
|
|
}
|
|
}
|
|
|
|
skip = i + 1
|
|
return
|
|
}
|
|
|
|
func (parser *Parser) blockFencedCode(out *bytes.Buffer, data []byte) int {
|
|
var lang *string
|
|
beg, marker := parser.isFencedCode(data, &lang, "")
|
|
if beg == 0 {
|
|
return 0
|
|
}
|
|
|
|
var work bytes.Buffer
|
|
|
|
for beg < len(data) {
|
|
fenceEnd, _ := parser.isFencedCode(data[beg:], nil, marker)
|
|
if fenceEnd != 0 {
|
|
beg += fenceEnd
|
|
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
|
|
if parser.isEmpty(data[beg:]) > 0 {
|
|
work.WriteByte('\n')
|
|
} else {
|
|
work.Write(data[beg:end])
|
|
}
|
|
}
|
|
beg = end
|
|
|
|
// did we find the end of the buffer without a closing marker?
|
|
if beg >= len(data) {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
if work.Len() > 0 && work.Bytes()[work.Len()-1] != '\n' {
|
|
work.WriteByte('\n')
|
|
}
|
|
|
|
syntax := ""
|
|
if lang != nil {
|
|
syntax = *lang
|
|
}
|
|
|
|
parser.r.BlockCode(out, work.Bytes(), syntax)
|
|
|
|
return beg
|
|
}
|
|
|
|
func (parser *Parser) blockTable(out *bytes.Buffer, data []byte) int {
|
|
var headerWork bytes.Buffer
|
|
i, columns, colData := parser.blockTableHeader(&headerWork, data)
|
|
if i == 0 {
|
|
return 0
|
|
}
|
|
|
|
var bodyWork bytes.Buffer
|
|
|
|
for i < len(data) {
|
|
pipes, rowStart := 0, i
|
|
for ; i < len(data) && data[i] != '\n'; i++ {
|
|
if data[i] == '|' {
|
|
pipes++
|
|
}
|
|
}
|
|
|
|
if pipes == 0 || i == len(data) {
|
|
i = rowStart
|
|
break
|
|
}
|
|
|
|
parser.blockTableRow(&bodyWork, data[rowStart:i], columns, colData)
|
|
i++
|
|
}
|
|
|
|
parser.r.Table(out, headerWork.Bytes(), bodyWork.Bytes(), colData)
|
|
|
|
return i
|
|
}
|
|
|
|
func (parser *Parser) blockTableHeader(out *bytes.Buffer, data []byte) (size int, columns int, columnData []int) {
|
|
i, pipes := 0, 0
|
|
columnData = []int{}
|
|
for i = 0; i < len(data) && data[i] != '\n'; i++ {
|
|
if data[i] == '|' {
|
|
pipes++
|
|
}
|
|
}
|
|
|
|
if i == len(data) || pipes == 0 {
|
|
return 0, 0, columnData
|
|
}
|
|
|
|
headerEnd := i
|
|
|
|
if data[0] == '|' {
|
|
pipes--
|
|
}
|
|
|
|
if i > 2 && data[i-1] == '|' {
|
|
pipes--
|
|
}
|
|
|
|
columns = pipes + 1
|
|
columnData = make([]int, columns)
|
|
|
|
// parse the header underline
|
|
i++
|
|
if i < len(data) && data[i] == '|' {
|
|
i++
|
|
}
|
|
|
|
underEnd := i
|
|
for underEnd < len(data) && data[underEnd] != '\n' {
|
|
underEnd++
|
|
}
|
|
|
|
col := 0
|
|
for ; col < columns && i < underEnd; col++ {
|
|
dashes := 0
|
|
|
|
for i < underEnd && (data[i] == ' ' || data[i] == '\t') {
|
|
i++
|
|
}
|
|
|
|
if data[i] == ':' {
|
|
i++
|
|
columnData[col] |= TABLE_ALIGNMENT_LEFT
|
|
dashes++
|
|
}
|
|
|
|
for i < underEnd && data[i] == '-' {
|
|
i++
|
|
dashes++
|
|
}
|
|
|
|
if i < underEnd && data[i] == ':' {
|
|
i++
|
|
columnData[col] |= TABLE_ALIGNMENT_RIGHT
|
|
dashes++
|
|
}
|
|
|
|
for i < underEnd && (data[i] == ' ' || data[i] == '\t') {
|
|
i++
|
|
}
|
|
|
|
if i < underEnd && data[i] != '|' {
|
|
break
|
|
}
|
|
|
|
if dashes < 3 {
|
|
break
|
|
}
|
|
|
|
i++
|
|
}
|
|
|
|
if col < columns {
|
|
return 0, 0, columnData
|
|
}
|
|
|
|
parser.blockTableRow(out, data[:headerEnd], columns, columnData)
|
|
size = underEnd + 1
|
|
return
|
|
}
|
|
|
|
func (parser *Parser) blockTableRow(out *bytes.Buffer, data []byte, columns int, colData []int) {
|
|
i, col := 0, 0
|
|
var rowWork bytes.Buffer
|
|
|
|
if i < len(data) && data[i] == '|' {
|
|
i++
|
|
}
|
|
|
|
for col = 0; col < columns && i < len(data); col++ {
|
|
for i < len(data) && isspace(data[i]) {
|
|
i++
|
|
}
|
|
|
|
cellStart := i
|
|
|
|
for i < len(data) && data[i] != '|' {
|
|
i++
|
|
}
|
|
|
|
cellEnd := i - 1
|
|
|
|
for cellEnd > cellStart && isspace(data[cellEnd]) {
|
|
cellEnd--
|
|
}
|
|
|
|
var cellWork bytes.Buffer
|
|
parser.parseInline(&cellWork, data[cellStart:cellEnd+1])
|
|
|
|
cdata := 0
|
|
if col < len(colData) {
|
|
cdata = colData[col]
|
|
}
|
|
parser.r.TableCell(&rowWork, cellWork.Bytes(), cdata)
|
|
|
|
i++
|
|
}
|
|
|
|
for ; col < columns; col++ {
|
|
emptyCell := []byte{}
|
|
cdata := 0
|
|
if col < len(colData) {
|
|
cdata = colData[col]
|
|
}
|
|
parser.r.TableCell(&rowWork, emptyCell, cdata)
|
|
}
|
|
|
|
parser.r.TableRow(out, rowWork.Bytes())
|
|
}
|
|
|
|
// returns blockquote prefix length
|
|
func (parser *Parser) blockQuotePrefix(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
|
|
}
|
|
|
|
// parse a blockquote fragment
|
|
func (parser *Parser) blockQuote(out *bytes.Buffer, data []byte) int {
|
|
var block bytes.Buffer
|
|
var work bytes.Buffer
|
|
beg, end := 0, 0
|
|
for beg < len(data) {
|
|
for end = beg + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
}
|
|
|
|
if pre := parser.blockQuotePrefix(data[beg:]); pre > 0 {
|
|
beg += pre // skip prefix
|
|
} else {
|
|
// empty line followed by non-quote line
|
|
if parser.isEmpty(data[beg:]) > 0 &&
|
|
(end >= len(data) ||
|
|
(parser.blockQuotePrefix(data[end:]) == 0 && parser.isEmpty(data[end:]) == 0)) {
|
|
break
|
|
}
|
|
}
|
|
|
|
if beg < end { // copy into the in-place working buffer
|
|
work.Write(data[beg:end])
|
|
}
|
|
beg = end
|
|
}
|
|
|
|
parser.parseBlock(&block, work.Bytes())
|
|
parser.r.BlockQuote(out, block.Bytes())
|
|
return end
|
|
}
|
|
|
|
// returns prefix length for block code
|
|
func (parser *Parser) blockCodePrefix(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 (parser *Parser) blockCode(out *bytes.Buffer, data []byte) int {
|
|
var work bytes.Buffer
|
|
|
|
beg, end := 0, 0
|
|
for beg < len(data) {
|
|
for end = beg + 1; end < len(data) && data[end-1] != '\n'; end++ {
|
|
}
|
|
|
|
if pre := parser.blockCodePrefix(data[beg:end]); pre > 0 {
|
|
beg += pre
|
|
} else {
|
|
if parser.isEmpty(data[beg:end]) == 0 {
|
|
// non-empty non-prefixed line breaks the pre
|
|
break
|
|
}
|
|
}
|
|
|
|
if beg < end {
|
|
// verbatim copy to the working buffer, escaping entities
|
|
if parser.isEmpty(data[beg:end]) > 0 {
|
|
work.WriteByte('\n')
|
|
} else {
|
|
work.Write(data[beg:end])
|
|
}
|
|
}
|
|
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.Truncate(len(workbytes) - n)
|
|
}
|
|
|
|
work.WriteByte('\n')
|
|
|
|
parser.r.BlockCode(out, work.Bytes(), "")
|
|
|
|
return beg
|
|
}
|
|
|
|
// returns unordered list item prefix
|
|
func (parser *Parser) blockUliPrefix(data []byte) int {
|
|
i := 0
|
|
|
|
// start with up to 3 spaces
|
|
for i < len(data) && i < 3 && data[i] == ' ' {
|
|
i++
|
|
}
|
|
|
|
// need a *, +, or - followed by a space/tab
|
|
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 (parser *Parser) blockOliPrefix(data []byte) int {
|
|
i := 0
|
|
|
|
// start with up to 3 spaces
|
|
for i < len(data) && i < 3 && data[i] == ' ' {
|
|
i++
|
|
}
|
|
|
|
// count the digits
|
|
start := i
|
|
for i < len(data) && data[i] >= '0' && data[i] <= '9' {
|
|
i++
|
|
}
|
|
|
|
// we need >= 1 digits followed by a dot and a space/tab
|
|
if start == i || data[i] != '.' || i+1 >= len(data) ||
|
|
(data[i+1] != ' ' && data[i+1] != '\t') {
|
|
return 0
|
|
}
|
|
return i + 2
|
|
}
|
|
|
|
// parse ordered or unordered list block
|
|
func (parser *Parser) blockList(out *bytes.Buffer, data []byte, flags int) int {
|
|
i := 0
|
|
work := func() bool {
|
|
j := 0
|
|
for i < len(data) {
|
|
j = parser.blockListItem(out, data[i:], &flags)
|
|
i += j
|
|
|
|
if j == 0 || flags&LIST_ITEM_END_OF_LIST != 0 {
|
|
break
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
parser.r.List(out, work, flags)
|
|
return i
|
|
}
|
|
|
|
// parse a single list item
|
|
// assumes initial prefix is already removed
|
|
func (parser *Parser) blockListItem(out *bytes.Buffer, data []byte, flags *int) int {
|
|
// keep track of the first indentation prefix
|
|
beg, end, pre, sublist, orgpre, i := 0, 0, 0, 0, 0, 0
|
|
|
|
for orgpre < 3 && orgpre < len(data) && data[orgpre] == ' ' {
|
|
orgpre++
|
|
}
|
|
|
|
beg = parser.blockUliPrefix(data)
|
|
if beg == 0 {
|
|
beg = parser.blockOliPrefix(data)
|
|
}
|
|
if beg == 0 {
|
|
return 0
|
|
}
|
|
|
|
// skip leading whitespace on first line
|
|
for beg < len(data) && (data[beg] == ' ' || data[beg] == '\t') {
|
|
beg++
|
|
}
|
|
|
|
// skip to the beginning of the following line
|
|
end = beg
|
|
for end < len(data) && data[end-1] != '\n' {
|
|
end++
|
|
}
|
|
|
|
// get working buffers
|
|
var work bytes.Buffer
|
|
var inter bytes.Buffer
|
|
|
|
// put the first line into the working buffer
|
|
work.Write(data[beg:end])
|
|
beg = end
|
|
|
|
// process the following lines
|
|
containsBlankLine, containsBlock := false, false
|
|
for beg < len(data) {
|
|
end++
|
|
|
|
for end < len(data) && data[end-1] != '\n' {
|
|
end++
|
|
}
|
|
|
|
// process an empty line
|
|
if parser.isEmpty(data[beg:end]) > 0 {
|
|
containsBlankLine = true
|
|
beg = end
|
|
continue
|
|
}
|
|
|
|
// calculate the indentation
|
|
i = 0
|
|
for i < 4 && beg+i < end && data[beg+i] == ' ' {
|
|
i++
|
|
}
|
|
|
|
pre = i
|
|
if data[beg] == '\t' {
|
|
i = 1
|
|
pre = TAB_SIZE_DEFAULT
|
|
if parser.flags&EXTENSION_TAB_SIZE_EIGHT != 0 {
|
|
pre = TAB_SIZE_EIGHT
|
|
}
|
|
}
|
|
|
|
chunk := data[beg+i : end]
|
|
|
|
// check for a nested list item
|
|
if (parser.blockUliPrefix(chunk) > 0 && !parser.isHRule(chunk)) ||
|
|
parser.blockOliPrefix(chunk) > 0 {
|
|
if containsBlankLine {
|
|
containsBlock = true
|
|
}
|
|
|
|
// the following item must have the same indentation
|
|
if pre == orgpre {
|
|
break
|
|
}
|
|
|
|
if sublist == 0 {
|
|
sublist = work.Len()
|
|
}
|
|
} else {
|
|
// how about a nested prefix header?
|
|
if parser.isPrefixHeader(chunk) {
|
|
// only nest headers that are indented
|
|
if containsBlankLine && i < 4 && data[beg] != '\t' {
|
|
*flags |= LIST_ITEM_END_OF_LIST
|
|
break
|
|
}
|
|
containsBlock = true
|
|
} else {
|
|
// only join stuff after empty lines when indented
|
|
if containsBlankLine && i < 4 && data[beg] != '\t' {
|
|
*flags |= LIST_ITEM_END_OF_LIST
|
|
break
|
|
} else {
|
|
if containsBlankLine {
|
|
work.WriteByte('\n')
|
|
containsBlock = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
containsBlankLine = false
|
|
|
|
// add the line into the working buffer without prefix
|
|
work.Write(data[beg+i : end])
|
|
beg = end
|
|
}
|
|
|
|
// render li contents
|
|
if containsBlock {
|
|
*flags |= LIST_ITEM_CONTAINS_BLOCK
|
|
}
|
|
|
|
workbytes := work.Bytes()
|
|
if *flags&LIST_ITEM_CONTAINS_BLOCK != 0 {
|
|
// intermediate render of block li
|
|
if sublist > 0 && sublist < len(workbytes) {
|
|
parser.parseBlock(&inter, workbytes[:sublist])
|
|
parser.parseBlock(&inter, workbytes[sublist:])
|
|
} else {
|
|
parser.parseBlock(&inter, workbytes)
|
|
}
|
|
} else {
|
|
// intermediate render of inline li
|
|
if sublist > 0 && sublist < len(workbytes) {
|
|
parser.parseInline(&inter, workbytes[:sublist])
|
|
parser.parseBlock(&inter, workbytes[sublist:])
|
|
} else {
|
|
parser.parseInline(&inter, workbytes)
|
|
}
|
|
}
|
|
|
|
// render li itself
|
|
parser.r.ListItem(out, inter.Bytes(), *flags)
|
|
|
|
return beg
|
|
}
|
|
|
|
// render a single paragraph that has already been parsed out
|
|
func (parser *Parser) renderParagraph(out *bytes.Buffer, data []byte) {
|
|
// trim leading whitespace
|
|
beg := 0
|
|
for beg < len(data) && isspace(data[beg]) {
|
|
beg++
|
|
}
|
|
|
|
// trim trailing whitespace
|
|
end := len(data)
|
|
for end > beg && isspace(data[end-1]) {
|
|
end--
|
|
}
|
|
if end == beg {
|
|
return
|
|
}
|
|
|
|
work := func() bool {
|
|
parser.parseInline(out, data[beg:end])
|
|
return true
|
|
}
|
|
parser.r.Paragraph(out, work)
|
|
}
|
|
|
|
func (parser *Parser) blockParagraph(out *bytes.Buffer, data []byte) int {
|
|
// prev: index of 1st char of previous line
|
|
// line: index of 1st char of current line
|
|
// i: index of cursor/end of current line
|
|
var prev, line, i int
|
|
|
|
// keep going until we find something to mark the end of the paragraph
|
|
for i < len(data) {
|
|
// mark the beginning of the current line
|
|
prev = line
|
|
current := data[i:]
|
|
line = i
|
|
|
|
// did we find a blank line marking the end of the paragraph?
|
|
if n := parser.isEmpty(current); n > 0 {
|
|
parser.renderParagraph(out, data[:i])
|
|
return i + n
|
|
}
|
|
|
|
// an underline under some text marks a header, so our paragraph ended on prev line
|
|
if i > 0 {
|
|
if level := parser.isUnderlinedHeader(current); level > 0 {
|
|
// render the paragraph
|
|
parser.renderParagraph(out, data[:prev])
|
|
|
|
// ignore leading and trailing whitespace
|
|
eol := i - 1
|
|
for prev < eol && (data[prev] == ' ' || data[prev] == '\t') {
|
|
prev++
|
|
}
|
|
for eol > prev && (data[eol-1] == ' ' || data[eol-1] == '\t') {
|
|
eol--
|
|
}
|
|
|
|
// render the header
|
|
// this ugly double closure avoids forcing variables onto the heap
|
|
work := func(o *bytes.Buffer, p *Parser, d []byte) func() bool {
|
|
return func() bool {
|
|
p.parseInline(o, d)
|
|
return true
|
|
}
|
|
}(out, parser, data[prev:eol])
|
|
parser.r.Header(out, work, level)
|
|
|
|
// find the end of the underline
|
|
for ; i < len(data) && data[i] != '\n'; i++ {
|
|
}
|
|
return i
|
|
}
|
|
}
|
|
|
|
// if the next line starts a block of HTML, then the paragraph ends here
|
|
if parser.flags&EXTENSION_LAX_HTML_BLOCKS != 0 {
|
|
if data[i] == '<' && parser.blockHtml(out, current, false) > 0 {
|
|
// rewind to before the HTML block
|
|
parser.renderParagraph(out, data[:i])
|
|
return i
|
|
}
|
|
}
|
|
|
|
// if there's a prefixed header or a horizontal rule after this, paragraph is over
|
|
if parser.isPrefixHeader(current) || parser.isHRule(current) {
|
|
parser.renderParagraph(out, data[:i])
|
|
return i
|
|
}
|
|
|
|
// otherwise, scan to the beginning of the next line
|
|
i++
|
|
for i < len(data) && data[i-1] != '\n' {
|
|
i++
|
|
}
|
|
}
|
|
|
|
parser.renderParagraph(out, data[:i])
|
|
return i
|
|
}
|