2011-05-28 06:12:21 +08:00
|
|
|
//
|
|
|
|
// Black Friday Markdown Processor
|
2011-05-29 07:37:18 +08:00
|
|
|
// Originally based on http://github.com/tanoku/upskirt
|
2011-05-28 06:12:21 +08:00
|
|
|
// by Russ Ross <russ@russross.com>
|
|
|
|
//
|
|
|
|
|
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-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-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
|
|
|
|
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.
|
|
|
|
const TAB_SIZE = 4
|
|
|
|
|
|
|
|
// These are the tags that are recognized as HTML block tags.
|
|
|
|
// Any of these can be included in markdown text without special escaping.
|
2011-05-28 23:49:21 +08:00
|
|
|
var block_tags = map[string]bool{
|
|
|
|
"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-05-29 11:17:53 +08:00
|
|
|
// This struct defines the rendering interface.
|
|
|
|
// A series of callback functions are registered to form a complete renderer.
|
|
|
|
// A single interface{} value field is provided, and that value is handed to
|
|
|
|
// each callback. Leaving a field blank suppresses rendering that type of output
|
|
|
|
// except where noted.
|
|
|
|
//
|
|
|
|
// This is mostly of interest if you are implementing a new rendering format.
|
|
|
|
// Most users will use the convenience functions to fill in this structure.
|
2011-05-29 03:00:47 +08:00
|
|
|
type Renderer struct {
|
2011-05-26 03:59:30 +08:00
|
|
|
// block-level callbacks---nil skips the block
|
2011-05-31 11:44:52 +08:00
|
|
|
BlockCode func(out *bytes.Buffer, text []byte, lang string, opaque interface{})
|
|
|
|
BlockQuote func(out *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
BlockHtml func(out *bytes.Buffer, text []byte, opaque interface{})
|
2011-06-25 22:20:08 +08:00
|
|
|
Header func(out *bytes.Buffer, text func() bool, level int, opaque interface{})
|
2011-05-31 11:44:52 +08:00
|
|
|
HRule func(out *bytes.Buffer, opaque interface{})
|
2011-06-26 05:02:46 +08:00
|
|
|
List func(out *bytes.Buffer, text func() bool, flags int, opaque interface{})
|
2011-05-31 11:44:52 +08:00
|
|
|
ListItem func(out *bytes.Buffer, text []byte, flags int, opaque interface{})
|
|
|
|
Paragraph func(out *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
Table func(out *bytes.Buffer, header []byte, body []byte, columnData []int, opaque interface{})
|
|
|
|
TableRow func(out *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
TableCell func(out *bytes.Buffer, text []byte, flags int, opaque interface{})
|
|
|
|
|
|
|
|
// Span-level callbacks---nil or return 0 prints the span verbatim
|
|
|
|
AutoLink func(out *bytes.Buffer, link []byte, kind int, opaque interface{}) int
|
|
|
|
CodeSpan func(out *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
DoubleEmphasis func(out *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
Emphasis func(out *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
Image func(out *bytes.Buffer, link []byte, title []byte, alt []byte, opaque interface{}) int
|
|
|
|
LineBreak func(out *bytes.Buffer, opaque interface{}) int
|
|
|
|
Link func(out *bytes.Buffer, link []byte, title []byte, content []byte, opaque interface{}) int
|
|
|
|
RawHtmlTag func(out *bytes.Buffer, tag []byte, opaque interface{}) int
|
|
|
|
TripleEmphasis func(out *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
StrikeThrough func(out *bytes.Buffer, text []byte, opaque interface{}) int
|
|
|
|
|
|
|
|
// Low-level callbacks---nil copies input directly into the output
|
|
|
|
Entity func(out *bytes.Buffer, entity []byte, opaque interface{})
|
|
|
|
NormalText func(out *bytes.Buffer, text []byte, opaque interface{})
|
|
|
|
|
|
|
|
// Header and footer
|
|
|
|
DocumentHeader func(out *bytes.Buffer, opaque interface{})
|
|
|
|
DocumentFooter func(out *bytes.Buffer, opaque interface{})
|
|
|
|
|
|
|
|
// User data---passed back to every callback
|
|
|
|
Opaque interface{}
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-30 01:43:18 +08:00
|
|
|
type inlineParser func(out *bytes.Buffer, rndr *render, data []byte, offset int) int
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-05-25 06:14:35 +08:00
|
|
|
type render struct {
|
2011-05-30 01:43:18 +08:00
|
|
|
mk *Renderer
|
|
|
|
refs map[string]*reference
|
|
|
|
inline [256]inlineParser
|
|
|
|
flags uint32
|
|
|
|
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-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-05-29 12:37:12 +08:00
|
|
|
func Markdown(input []byte, renderer *Renderer, extensions uint32) []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
|
|
|
|
rndr := new(render)
|
|
|
|
rndr.mk = renderer
|
2011-05-30 01:43:18 +08:00
|
|
|
rndr.flags = extensions
|
|
|
|
rndr.refs = make(map[string]*reference)
|
|
|
|
rndr.maxNesting = 16
|
2011-06-25 01:50:03 +08:00
|
|
|
rndr.insideLink = false
|
2011-05-30 01:43:18 +08:00
|
|
|
|
|
|
|
// register inline parsers
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.Emphasis != nil || rndr.mk.DoubleEmphasis != nil || rndr.mk.TripleEmphasis != nil {
|
2011-05-30 01:43:18 +08:00
|
|
|
rndr.inline['*'] = inlineEmphasis
|
|
|
|
rndr.inline['_'] = inlineEmphasis
|
2011-05-29 11:17:53 +08:00
|
|
|
if extensions&EXTENSION_STRIKETHROUGH != 0 {
|
2011-05-30 01:43:18 +08:00
|
|
|
rndr.inline['~'] = inlineEmphasis
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.CodeSpan != nil {
|
|
|
|
rndr.inline['`'] = inlineCodeSpan
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.LineBreak != nil {
|
|
|
|
rndr.inline['\n'] = inlineLineBreak
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.Image != nil || rndr.mk.Link != nil {
|
2011-05-30 01:43:18 +08:00
|
|
|
rndr.inline['['] = inlineLink
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 11:44:52 +08:00
|
|
|
rndr.inline['<'] = inlineLAngle
|
2011-05-30 01:43:18 +08:00
|
|
|
rndr.inline['\\'] = inlineEscape
|
|
|
|
rndr.inline['&'] = inlineEntity
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
if extensions&EXTENSION_AUTOLINK != 0 {
|
2011-05-31 11:44:52 +08:00
|
|
|
rndr.inline[':'] = inlineAutoLink
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// first pass: look for references, copy everything else
|
2011-06-01 01:11:04 +08:00
|
|
|
var text bytes.Buffer
|
2011-05-29 11:17:53 +08:00
|
|
|
beg, end := 0, 0
|
|
|
|
for beg < len(input) { // iterate over lines
|
2011-05-30 01:43:18 +08:00
|
|
|
if end = isReference(rndr, 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-06-01 01:11:04 +08:00
|
|
|
expandTabs(&text, input[beg:end])
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for end < len(input) && (input[end] == '\n' || input[end] == '\r') {
|
|
|
|
// add one \n per newline
|
|
|
|
if input[end] == '\n' || (end+1 < len(input) && input[end+1] != '\n') {
|
|
|
|
text.WriteByte('\n')
|
|
|
|
}
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
|
|
|
|
beg = end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// second pass: actual rendering
|
2011-06-01 01:11:04 +08:00
|
|
|
var output bytes.Buffer
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.DocumentHeader != nil {
|
2011-06-01 01:11:04 +08:00
|
|
|
rndr.mk.DocumentHeader(&output, rndr.mk.Opaque)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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')
|
|
|
|
}
|
2011-06-01 01:11:04 +08:00
|
|
|
parseBlock(&output, rndr, text.Bytes())
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 11:44:52 +08:00
|
|
|
if rndr.mk.DocumentFooter != nil {
|
2011-06-01 01:11:04 +08:00
|
|
|
rndr.mk.DocumentFooter(&output, rndr.mk.Opaque)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if rndr.nesting != 0 {
|
|
|
|
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).
|
|
|
|
// Returns the number of bytes to skip to move past it, or zero
|
|
|
|
// if there is the first line is not a reference.
|
2011-05-30 01:43:18 +08:00
|
|
|
func isReference(rndr *render, 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
|
|
|
if data[i] == ' ' {
|
|
|
|
return 0
|
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++
|
|
|
|
id_offset := i
|
|
|
|
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-05-29 11:17:53 +08:00
|
|
|
id_end := 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-05-29 11:17:53 +08:00
|
|
|
link_offset := i
|
|
|
|
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-05-29 11:17:53 +08:00
|
|
|
link_end := i
|
|
|
|
if data[link_offset] == '<' && data[link_end-1] == '>' {
|
|
|
|
link_offset++
|
|
|
|
link_end--
|
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
|
|
|
|
line_end := 0
|
|
|
|
if i >= len(data) || data[i] == '\r' || data[i] == '\n' {
|
|
|
|
line_end = 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' {
|
|
|
|
line_end++
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// 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++
|
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
|
|
|
|
title_offset, title_end := 0, 0
|
|
|
|
if i+1 < len(data) && (data[i] == '\'' || data[i] == '"' || data[i] == '(') {
|
2011-05-27 12:27:33 +08:00
|
|
|
i++
|
2011-05-29 11:17:53 +08:00
|
|
|
title_offset = 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' {
|
|
|
|
title_end = i + 1
|
|
|
|
} else {
|
|
|
|
title_end = i
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// step back
|
|
|
|
i--
|
|
|
|
for i > title_offset && (data[i] == ' ' || data[i] == '\t') {
|
|
|
|
i--
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if i > title_offset && (data[i] == '\'' || data[i] == '"' || data[i] == ')') {
|
|
|
|
line_end = title_end
|
|
|
|
title_end = i
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if line_end == 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
|
|
|
|
if rndr == nil {
|
|
|
|
return line_end
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
2011-05-30 01:43:18 +08:00
|
|
|
|
|
|
|
// id matches are case-insensitive
|
|
|
|
id := string(bytes.ToLower(data[id_offset:id_end]))
|
|
|
|
rndr.refs[id] = &reference{
|
|
|
|
link: data[link_offset:link_end],
|
|
|
|
title: data[title_offset:title_end],
|
|
|
|
}
|
2011-05-29 07:37:18 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
return line_end
|
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-05-30 01:43:18 +08:00
|
|
|
func expandTabs(out *bytes.Buffer, line []byte) {
|
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 {
|
|
|
|
for i = 0; i < prefix*TAB_SIZE; i++ {
|
|
|
|
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++
|
|
|
|
if column%TAB_SIZE == 0 {
|
2011-05-26 10:46:16 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|