2011-05-28 06:12:21 +08:00
|
|
|
//
|
2011-06-28 10:11:32 +08:00
|
|
|
// Blackfriday Markdown Processor
|
|
|
|
// Available at http://github.com/russross/blackfriday
|
|
|
|
//
|
|
|
|
// Copyright © 2011 Russ Ross <russ@russross.com>.
|
2011-06-29 01:30:10 +08:00
|
|
|
// Distributed under the Simplified BSD License.
|
2011-06-28 10:11:32 +08:00
|
|
|
// See README.md for details.
|
2011-05-28 06:12:21 +08:00
|
|
|
//
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Markdown parsing and processing
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
package blackfriday
|
2011-05-25 06:14:35 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2011-06-01 02:04:58 +08:00
|
|
|
"utf8"
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
2011-06-30 01:22:20 +08:00
|
|
|
const VERSION = "0.6"
|
2011-06-29 01:30:10 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// These are the supported markdown parsing extensions.
|
|
|
|
// OR these values together to select multiple extensions.
|
2011-05-25 06:14:35 +08:00
|
|
|
const (
|
2011-05-29 11:17:53 +08:00
|
|
|
EXTENSION_NO_INTRA_EMPHASIS = 1 << iota
|
|
|
|
EXTENSION_TABLES
|
|
|
|
EXTENSION_FENCED_CODE
|
|
|
|
EXTENSION_AUTOLINK
|
|
|
|
EXTENSION_STRIKETHROUGH
|
|
|
|
EXTENSION_LAX_HTML_BLOCKS
|
|
|
|
EXTENSION_SPACE_HEADERS
|
2011-06-26 05:45:51 +08:00
|
|
|
EXTENSION_HARD_LINE_BREAK
|
2011-06-29 00:58:10 +08:00
|
|
|
EXTENSION_TAB_SIZE_EIGHT
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// These are the possible flag values for the link renderer.
|
|
|
|
// Only a single one of these values will be used; they are not ORed together.
|
|
|
|
// These are mostly of interest if you are writing a new output format.
|
2011-05-25 06:14:35 +08:00
|
|
|
const (
|
2011-05-29 11:17:53 +08:00
|
|
|
LINK_TYPE_NOT_AUTOLINK = iota
|
|
|
|
LINK_TYPE_NORMAL
|
|
|
|
LINK_TYPE_EMAIL
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// These are the possible flag values for the listitem renderer.
|
|
|
|
// Multiple flag values may be ORed together.
|
|
|
|
// These are mostly of interest if you are writing a new output format.
|
2011-05-26 03:59:30 +08:00
|
|
|
const (
|
2011-05-29 11:17:53 +08:00
|
|
|
LIST_TYPE_ORDERED = 1 << iota
|
|
|
|
LIST_ITEM_CONTAINS_BLOCK
|
2011-07-02 01:19:42 +08:00
|
|
|
LIST_ITEM_BEGINNING_OF_LIST
|
2011-05-29 11:17:53 +08:00
|
|
|
LIST_ITEM_END_OF_LIST
|
2011-05-26 03:59:30 +08:00
|
|
|
)
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// These are the possible flag values for the table cell renderer.
|
|
|
|
// Only a single one of these values will be used; they are not ORed together.
|
|
|
|
// These are mostly of interest if you are writing a new output format.
|
2011-05-26 03:59:30 +08:00
|
|
|
const (
|
2011-05-29 11:17:53 +08:00
|
|
|
TABLE_ALIGNMENT_LEFT = 1 << iota
|
|
|
|
TABLE_ALIGNMENT_RIGHT
|
|
|
|
TABLE_ALIGNMENT_CENTER = (TABLE_ALIGNMENT_LEFT | TABLE_ALIGNMENT_RIGHT)
|
2011-05-26 03:59:30 +08:00
|
|
|
)
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// The size of a tab stop.
|
2011-06-29 00:58:10 +08:00
|
|
|
const (
|
|
|
|
TAB_SIZE_DEFAULT = 4
|
|
|
|
TAB_SIZE_EIGHT = 8
|
|
|
|
)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
|
|
|
// These are the tags that are recognized as HTML block tags.
|
|
|
|
// Any of these can be included in markdown text without special escaping.
|
2011-06-29 06:02:12 +08:00
|
|
|
var blockTags = map[string]bool{
|
2011-05-28 23:49:21 +08:00
|
|
|
"p": true,
|
|
|
|
"dl": true,
|
|
|
|
"h1": true,
|
|
|
|
"h2": true,
|
|
|
|
"h3": true,
|
|
|
|
"h4": true,
|
|
|
|
"h5": true,
|
|
|
|
"h6": true,
|
|
|
|
"ol": true,
|
|
|
|
"ul": true,
|
|
|
|
"del": true,
|
|
|
|
"div": true,
|
|
|
|
"ins": true,
|
|
|
|
"pre": true,
|
|
|
|
"form": true,
|
|
|
|
"math": true,
|
|
|
|
"table": true,
|
|
|
|
"iframe": true,
|
|
|
|
"script": true,
|
|
|
|
"fieldset": true,
|
|
|
|
"noscript": true,
|
|
|
|
"blockquote": true,
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:21:46 +08:00
|
|
|
// This interface defines the rendering interface.
|
2011-05-29 11:17:53 +08:00
|
|
|
// This is mostly of interest if you are implementing a new rendering format.
|
2011-06-30 01:21:46 +08:00
|
|
|
// Currently Html and Latex implementations are provided
|
2011-06-30 01:13:17 +08:00
|
|
|
type Renderer interface {
|
|
|
|
// block-level callbacks
|
|
|
|
BlockCode(out *bytes.Buffer, text []byte, lang string)
|
|
|
|
BlockQuote(out *bytes.Buffer, text []byte)
|
|
|
|
BlockHtml(out *bytes.Buffer, text []byte)
|
|
|
|
Header(out *bytes.Buffer, text func() bool, level int)
|
|
|
|
HRule(out *bytes.Buffer)
|
|
|
|
List(out *bytes.Buffer, text func() bool, flags int)
|
|
|
|
ListItem(out *bytes.Buffer, text []byte, flags int)
|
|
|
|
Paragraph(out *bytes.Buffer, text func() bool)
|
|
|
|
Table(out *bytes.Buffer, header []byte, body []byte, columnData []int)
|
|
|
|
TableRow(out *bytes.Buffer, text []byte)
|
|
|
|
TableCell(out *bytes.Buffer, text []byte, flags int)
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
// Span-level callbacks
|
|
|
|
AutoLink(out *bytes.Buffer, link []byte, kind int)
|
|
|
|
CodeSpan(out *bytes.Buffer, text []byte)
|
|
|
|
DoubleEmphasis(out *bytes.Buffer, text []byte)
|
|
|
|
Emphasis(out *bytes.Buffer, text []byte)
|
|
|
|
Image(out *bytes.Buffer, link []byte, title []byte, alt []byte)
|
|
|
|
LineBreak(out *bytes.Buffer)
|
|
|
|
Link(out *bytes.Buffer, link []byte, title []byte, content []byte)
|
|
|
|
RawHtmlTag(out *bytes.Buffer, tag []byte)
|
|
|
|
TripleEmphasis(out *bytes.Buffer, text []byte)
|
|
|
|
StrikeThrough(out *bytes.Buffer, text []byte)
|
2011-06-30 01:13:17 +08:00
|
|
|
|
|
|
|
// Low-level callbacks
|
|
|
|
Entity(out *bytes.Buffer, entity []byte)
|
|
|
|
NormalText(out *bytes.Buffer, text []byte)
|
2011-05-31 11:44:52 +08:00
|
|
|
|
|
|
|
// Header and footer
|
2011-06-30 01:13:17 +08:00
|
|
|
DocumentHeader(out *bytes.Buffer)
|
|
|
|
DocumentFooter(out *bytes.Buffer)
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:21:46 +08:00
|
|
|
// Callback functions for inline parsing. One such function is defined
|
|
|
|
// for each character that triggers a response when parsing inline data.
|
|
|
|
type inlineParser func(parser *Parser, out *bytes.Buffer, data []byte, offset int) int
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-06-30 01:21:46 +08:00
|
|
|
// The main parser object.
|
|
|
|
// This is constructed by the Markdown function and
|
|
|
|
// contains state used during the parsing process.
|
2011-06-29 08:58:53 +08:00
|
|
|
type Parser struct {
|
2011-06-30 01:13:17 +08:00
|
|
|
r Renderer
|
2011-05-30 01:43:18 +08:00
|
|
|
refs map[string]*reference
|
|
|
|
inline [256]inlineParser
|
2011-06-29 05:55:27 +08:00
|
|
|
flags int
|
2011-05-30 01:43:18 +08:00
|
|
|
nesting int
|
|
|
|
maxNesting int
|
2011-06-25 01:50:03 +08:00
|
|
|
insideLink bool
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Public interface
|
|
|
|
//
|
2011-05-26 23:47:41 +08:00
|
|
|
//
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-06-29 05:55:27 +08:00
|
|
|
// Call Markdown with no extensions
|
|
|
|
func MarkdownBasic(input []byte) []byte {
|
|
|
|
// set up the HTML renderer
|
|
|
|
htmlFlags := HTML_USE_XHTML
|
2011-06-30 00:08:56 +08:00
|
|
|
renderer := HtmlRenderer(htmlFlags, "", "")
|
2011-06-29 05:55:27 +08:00
|
|
|
|
|
|
|
// set up the parser
|
|
|
|
extensions := 0
|
|
|
|
|
|
|
|
return Markdown(input, renderer, extensions)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call Markdown with most useful extensions enabled
|
|
|
|
func MarkdownCommon(input []byte) []byte {
|
|
|
|
// set up the HTML renderer
|
|
|
|
htmlFlags := 0
|
|
|
|
htmlFlags |= HTML_USE_XHTML
|
|
|
|
htmlFlags |= HTML_USE_SMARTYPANTS
|
|
|
|
htmlFlags |= HTML_SMARTYPANTS_FRACTIONS
|
|
|
|
htmlFlags |= HTML_SMARTYPANTS_LATEX_DASHES
|
2011-06-30 00:08:56 +08:00
|
|
|
renderer := HtmlRenderer(htmlFlags, "", "")
|
2011-06-29 05:55:27 +08:00
|
|
|
|
|
|
|
// set up the parser
|
|
|
|
extensions := 0
|
|
|
|
extensions |= EXTENSION_NO_INTRA_EMPHASIS
|
|
|
|
extensions |= EXTENSION_TABLES
|
|
|
|
extensions |= EXTENSION_FENCED_CODE
|
|
|
|
extensions |= EXTENSION_AUTOLINK
|
|
|
|
extensions |= EXTENSION_STRIKETHROUGH
|
|
|
|
extensions |= EXTENSION_SPACE_HEADERS
|
|
|
|
|
|
|
|
return Markdown(input, renderer, extensions)
|
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Parse and render a block of markdown-encoded text.
|
|
|
|
// The renderer is used to format the output, and extensions dictates which
|
|
|
|
// non-standard extensions are enabled.
|
2011-06-30 01:13:17 +08:00
|
|
|
func Markdown(input []byte, renderer Renderer, extensions int) []byte {
|
2011-05-29 11:17:53 +08:00
|
|
|
// no point in parsing if we can't render
|
|
|
|
if renderer == nil {
|
2011-05-29 12:37:12 +08:00
|
|
|
return nil
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// fill in the render structure
|
2011-06-29 08:58:53 +08:00
|
|
|
parser := new(Parser)
|
|
|
|
parser.r = renderer
|
|
|
|
parser.flags = extensions
|
|
|
|
parser.refs = make(map[string]*reference)
|
|
|
|
parser.maxNesting = 16
|
|
|
|
parser.insideLink = false
|
2011-05-30 01:43:18 +08:00
|
|
|
|
|
|
|
// register inline parsers
|
2011-06-30 01:13:17 +08:00
|
|
|
parser.inline['*'] = inlineEmphasis
|
|
|
|
parser.inline['_'] = inlineEmphasis
|
|
|
|
if extensions&EXTENSION_STRIKETHROUGH != 0 {
|
|
|
|
parser.inline['~'] = inlineEmphasis
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-30 01:13:17 +08:00
|
|
|
parser.inline['`'] = inlineCodeSpan
|
|
|
|
parser.inline['\n'] = inlineLineBreak
|
|
|
|
parser.inline['['] = inlineLink
|
2011-06-29 08:58:53 +08:00
|
|
|
parser.inline['<'] = inlineLAngle
|
|
|
|
parser.inline['\\'] = inlineEscape
|
|
|
|
parser.inline['&'] = inlineEntity
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
if extensions&EXTENSION_AUTOLINK != 0 {
|
2011-06-29 08:58:53 +08:00
|
|
|
parser.inline[':'] = inlineAutoLink
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-29 08:58:53 +08:00
|
|
|
first := firstPass(parser, input)
|
|
|
|
second := secondPass(parser, first)
|
2011-06-26 23:51:36 +08:00
|
|
|
|
|
|
|
return second
|
|
|
|
}
|
|
|
|
|
|
|
|
// first pass:
|
|
|
|
// - extract references
|
|
|
|
// - expand tabs
|
|
|
|
// - normalize newlines
|
|
|
|
// - copy everything else
|
2011-06-29 08:58:53 +08:00
|
|
|
func firstPass(parser *Parser, input []byte) []byte {
|
2011-06-26 23:51:36 +08:00
|
|
|
var out bytes.Buffer
|
2011-06-29 06:02:12 +08:00
|
|
|
tabSize := TAB_SIZE_DEFAULT
|
2011-06-29 08:58:53 +08:00
|
|
|
if parser.flags&EXTENSION_TAB_SIZE_EIGHT != 0 {
|
2011-06-29 06:02:12 +08:00
|
|
|
tabSize = TAB_SIZE_EIGHT
|
2011-06-29 00:58:10 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
beg, end := 0, 0
|
|
|
|
for beg < len(input) { // iterate over lines
|
2011-06-29 08:58:53 +08:00
|
|
|
if end = isReference(parser, input[beg:]); end > 0 {
|
2011-05-29 11:17:53 +08:00
|
|
|
beg += end
|
|
|
|
} else { // skip to the next line
|
|
|
|
end = beg
|
|
|
|
for end < len(input) && input[end] != '\n' && input[end] != '\r' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
// add the line body if present
|
|
|
|
if end > beg {
|
2011-07-01 23:57:11 +08:00
|
|
|
expandTabs(&out, input[beg:end], tabSize)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-29 00:58:10 +08:00
|
|
|
out.WriteByte('\n')
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-26 23:51:36 +08:00
|
|
|
if end < len(input) && input[end] == '\r' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
if end < len(input) && input[end] == '\n' {
|
2011-05-29 11:17:53 +08:00
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
}
|
2011-06-26 23:51:36 +08:00
|
|
|
return out.Bytes()
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-26 23:51:36 +08:00
|
|
|
// second pass: actual rendering
|
2011-06-29 08:58:53 +08:00
|
|
|
func secondPass(parser *Parser, input []byte) []byte {
|
2011-06-01 01:11:04 +08:00
|
|
|
var output bytes.Buffer
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
parser.r.DocumentHeader(&output)
|
2011-06-29 08:58:53 +08:00
|
|
|
parser.parseBlock(&output, input)
|
2011-06-30 01:13:17 +08:00
|
|
|
parser.r.DocumentFooter(&output)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-29 08:58:53 +08:00
|
|
|
if parser.nesting != 0 {
|
2011-05-29 11:17:53 +08:00
|
|
|
panic("Nesting level did not end at zero")
|
|
|
|
}
|
2011-05-29 12:37:12 +08:00
|
|
|
|
2011-05-29 12:50:33 +08:00
|
|
|
return output.Bytes()
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-26 03:59:30 +08:00
|
|
|
//
|
2011-05-29 11:17:53 +08:00
|
|
|
// Link references
|
2011-05-26 03:59:30 +08:00
|
|
|
//
|
2011-05-29 11:17:53 +08:00
|
|
|
// This section implements support for references that (usually) appear
|
|
|
|
// as footnotes in a document, and can be referenced anywhere in the document.
|
|
|
|
// The basic format is:
|
2011-05-26 03:59:30 +08:00
|
|
|
//
|
2011-05-29 11:17:53 +08:00
|
|
|
// [1]: http://www.google.com/ "Google"
|
|
|
|
// [2]: http://www.github.com/ "Github"
|
2011-05-26 03:59:30 +08:00
|
|
|
//
|
2011-05-29 11:17:53 +08:00
|
|
|
// Anywhere in the document, the reference can be linked by referring to its
|
|
|
|
// label, i.e., 1 and 2 in this example, as in:
|
|
|
|
//
|
|
|
|
// This library is hosted on [Github][2], a git hosting site.
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// References are parsed and stored in this struct.
|
2011-05-30 01:43:18 +08:00
|
|
|
type reference struct {
|
2011-05-29 11:17:53 +08:00
|
|
|
link []byte
|
|
|
|
title []byte
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Check whether or not data starts with a reference link.
|
|
|
|
// If so, it is parsed and stored in the list of references
|
|
|
|
// (in the render struct).
|
2011-06-26 23:51:36 +08:00
|
|
|
// Returns the number of bytes to skip to move past it,
|
|
|
|
// or zero if the first line is not a reference.
|
2011-06-29 08:58:53 +08:00
|
|
|
func isReference(parser *Parser, data []byte) int {
|
2011-05-29 11:17:53 +08:00
|
|
|
// up to 3 optional leading spaces
|
|
|
|
if len(data) < 4 {
|
|
|
|
return 0
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
i := 0
|
|
|
|
for i < 3 && data[i] == ' ' {
|
|
|
|
i++
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
|
|
|
|
// id part: anything but a newline between brackets
|
|
|
|
if data[i] != '[' {
|
|
|
|
return 0
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
i++
|
2011-06-29 06:02:12 +08:00
|
|
|
idOffset := i
|
2011-05-29 11:17:53 +08:00
|
|
|
for i < len(data) && data[i] != '\n' && data[i] != '\r' && data[i] != ']' {
|
|
|
|
i++
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i >= len(data) || data[i] != ']' {
|
|
|
|
return 0
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
2011-06-29 06:02:12 +08:00
|
|
|
idEnd := i
|
2011-05-25 06:14:35 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// spacer: colon (space | tab)* newline? (space | tab)*
|
|
|
|
i++
|
|
|
|
if i >= len(data) || data[i] != ':' {
|
|
|
|
return 0
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
i++
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i < len(data) && (data[i] == '\n' || data[i] == '\r') {
|
|
|
|
i++
|
|
|
|
if i < len(data) && data[i] == '\n' && data[i-1] == '\r' {
|
|
|
|
i++
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
if i >= len(data) {
|
|
|
|
return 0
|
2011-05-26 03:59:30 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// link: whitespace-free sequence, optionally between angle brackets
|
|
|
|
if data[i] == '<' {
|
2011-05-26 06:00:01 +08:00
|
|
|
i++
|
|
|
|
}
|
2011-06-29 06:02:12 +08:00
|
|
|
linkOffset := i
|
2011-05-29 11:17:53 +08:00
|
|
|
for i < len(data) && data[i] != ' ' && data[i] != '\t' && data[i] != '\n' && data[i] != '\r' {
|
|
|
|
i++
|
2011-05-28 03:38:10 +08:00
|
|
|
}
|
2011-06-29 06:02:12 +08:00
|
|
|
linkEnd := i
|
|
|
|
if data[linkOffset] == '<' && data[linkEnd-1] == '>' {
|
|
|
|
linkOffset++
|
|
|
|
linkEnd--
|
2011-05-28 03:38:10 +08:00
|
|
|
}
|
2011-05-27 12:27:33 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// optional spacer: (space | tab)* (newline | '\'' | '"' | '(' )
|
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i < len(data) && data[i] != '\n' && data[i] != '\r' && data[i] != '\'' && data[i] != '"' && data[i] != '(' {
|
2011-05-27 12:27:33 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// compute end-of-line
|
2011-06-29 06:02:12 +08:00
|
|
|
lineEnd := 0
|
2011-05-29 11:17:53 +08:00
|
|
|
if i >= len(data) || data[i] == '\r' || data[i] == '\n' {
|
2011-06-29 06:02:12 +08:00
|
|
|
lineEnd = i
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i+1 < len(data) && data[i] == '\r' && data[i+1] == '\n' {
|
2011-06-29 06:02:12 +08:00
|
|
|
lineEnd++
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// optional (space|tab)* spacer after a newline
|
2011-06-29 06:02:12 +08:00
|
|
|
if lineEnd > 0 {
|
|
|
|
i = lineEnd + 1
|
2011-05-29 11:17:53 +08:00
|
|
|
for i < len(data) && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i++
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// optional title: any non-newline sequence enclosed in '"() alone on its line
|
2011-06-29 06:02:12 +08:00
|
|
|
titleOffset, titleEnd := 0, 0
|
2011-05-29 11:17:53 +08:00
|
|
|
if i+1 < len(data) && (data[i] == '\'' || data[i] == '"' || data[i] == '(') {
|
2011-05-27 12:27:33 +08:00
|
|
|
i++
|
2011-06-29 06:02:12 +08:00
|
|
|
titleOffset = i
|
2011-05-27 12:27:33 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// look for EOL
|
|
|
|
for i < len(data) && data[i] != '\n' && data[i] != '\r' {
|
|
|
|
i++
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i+1 < len(data) && data[i] == '\n' && data[i+1] == '\r' {
|
2011-06-29 06:02:12 +08:00
|
|
|
titleEnd = i + 1
|
2011-05-29 11:17:53 +08:00
|
|
|
} else {
|
2011-06-29 06:02:12 +08:00
|
|
|
titleEnd = i
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// step back
|
|
|
|
i--
|
2011-06-29 06:02:12 +08:00
|
|
|
for i > titleOffset && (data[i] == ' ' || data[i] == '\t') {
|
2011-05-29 11:17:53 +08:00
|
|
|
i--
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
2011-06-29 06:02:12 +08:00
|
|
|
if i > titleOffset && (data[i] == '\'' || data[i] == '"' || data[i] == ')') {
|
|
|
|
lineEnd = titleEnd
|
|
|
|
titleEnd = i
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-29 06:02:12 +08:00
|
|
|
if lineEnd == 0 { // garbage after the link
|
2011-05-29 07:37:18 +08:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// a valid ref has been found
|
2011-06-29 08:58:53 +08:00
|
|
|
if parser == nil {
|
2011-06-29 06:02:12 +08:00
|
|
|
return lineEnd
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
2011-05-30 01:43:18 +08:00
|
|
|
|
|
|
|
// id matches are case-insensitive
|
2011-06-29 06:02:12 +08:00
|
|
|
id := string(bytes.ToLower(data[idOffset:idEnd]))
|
2011-06-29 08:58:53 +08:00
|
|
|
parser.refs[id] = &reference{
|
2011-06-29 06:02:12 +08:00
|
|
|
link: data[linkOffset:linkEnd],
|
|
|
|
title: data[titleOffset:titleEnd],
|
2011-05-30 01:43:18 +08:00
|
|
|
}
|
2011-05-29 07:37:18 +08:00
|
|
|
|
2011-06-29 06:02:12 +08:00
|
|
|
return lineEnd
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Miscellaneous helper functions
|
|
|
|
//
|
|
|
|
//
|
2011-05-29 07:37:18 +08:00
|
|
|
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Test if a character is a punctuation symbol.
|
|
|
|
// Taken from a private function in regexp in the stdlib.
|
|
|
|
func ispunct(c byte) bool {
|
|
|
|
for _, r := range []byte("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~") {
|
|
|
|
if c == r {
|
|
|
|
return true
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
return false
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Test if a character is a whitespace character.
|
|
|
|
func isspace(c byte) bool {
|
|
|
|
return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f' || c == '\v'
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Test if a character is a letter or a digit.
|
2011-05-30 01:43:18 +08:00
|
|
|
// TODO: check when this is looking for ASCII alnum and when it should use unicode
|
2011-05-29 11:17:53 +08:00
|
|
|
func isalnum(c byte) bool {
|
|
|
|
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
2011-05-27 12:27:33 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// Replace tab characters with spaces, aligning to the next TAB_SIZE column.
|
2011-06-26 23:51:36 +08:00
|
|
|
// always ends output with a newline
|
2011-06-29 06:02:12 +08:00
|
|
|
func expandTabs(out *bytes.Buffer, line []byte, tabSize int) {
|
2011-06-01 02:04:58 +08:00
|
|
|
// first, check for common cases: no tabs, or only tabs at beginning of line
|
|
|
|
i, prefix := 0, 0
|
|
|
|
slowcase := false
|
|
|
|
for i = 0; i < len(line); i++ {
|
|
|
|
if line[i] == '\t' {
|
|
|
|
if prefix == i {
|
|
|
|
prefix++
|
|
|
|
} else {
|
|
|
|
slowcase = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-06-01 02:04:58 +08:00
|
|
|
// no need to decode runes if all tabs are at the beginning of the line
|
|
|
|
if !slowcase {
|
2011-06-29 06:02:12 +08:00
|
|
|
for i = 0; i < prefix*tabSize; i++ {
|
2011-06-01 02:04:58 +08:00
|
|
|
out.WriteByte(' ')
|
|
|
|
}
|
|
|
|
out.Write(line[prefix:])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// the slow case: we need to count runes to figure out how
|
|
|
|
// many spaces to insert for each tab
|
|
|
|
column := 0
|
2011-06-25 01:50:03 +08:00
|
|
|
i = 0
|
2011-05-26 10:46:16 +08:00
|
|
|
for i < len(line) {
|
2011-06-01 02:04:58 +08:00
|
|
|
start := i
|
2011-05-26 10:46:16 +08:00
|
|
|
for i < len(line) && line[i] != '\t' {
|
2011-06-01 02:04:58 +08:00
|
|
|
_, size := utf8.DecodeRune(line[i:])
|
|
|
|
i += size
|
|
|
|
column++
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
2011-06-01 02:04:58 +08:00
|
|
|
if i > start {
|
|
|
|
out.Write(line[start:i])
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if i >= len(line) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
2011-05-30 01:43:18 +08:00
|
|
|
out.WriteByte(' ')
|
2011-06-01 02:04:58 +08:00
|
|
|
column++
|
2011-06-29 06:02:12 +08:00
|
|
|
if column%tabSize == 0 {
|
2011-05-26 10:46:16 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|