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
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// Package blackfriday is a markdown processor.
|
2011-07-08 02:05:29 +08:00
|
|
|
//
|
|
|
|
// Translates plain text with simple formatting rules into HTML or LaTeX.
|
2011-05-29 11:17:53 +08:00
|
|
|
package blackfriday
|
2011-05-25 06:14:35 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2015-11-03 02:24:34 +08:00
|
|
|
"fmt"
|
2016-07-05 12:32:16 +08:00
|
|
|
"io"
|
2014-12-17 07:17:49 +08:00
|
|
|
"strings"
|
2012-03-08 12:36:31 +08:00
|
|
|
"unicode/utf8"
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// Version string of the package.
|
|
|
|
const Version = "2.0"
|
2011-06-29 01:30:10 +08:00
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// Extensions is a bitwise or'ed collection of enabled Blackfriday's
|
|
|
|
// extensions.
|
2015-10-26 23:29:52 +08:00
|
|
|
type Extensions int
|
|
|
|
|
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 (
|
2016-08-10 12:26:37 +08:00
|
|
|
NoExtensions Extensions = 0
|
|
|
|
NoIntraEmphasis Extensions = 1 << iota // Ignore emphasis markers inside words
|
|
|
|
Tables // Render tables
|
|
|
|
FencedCode // Render fenced code blocks
|
|
|
|
Autolink // Detect embedded URLs that are not explicitly marked
|
|
|
|
Strikethrough // Strikethrough text using ~~test~~
|
|
|
|
LaxHTMLBlocks // Loosen up HTML block parsing rules
|
|
|
|
SpaceHeaders // Be strict about prefix header rules
|
|
|
|
HardLineBreak // Translate newlines into line breaks
|
|
|
|
TabSizeEight // Expand tabs to eight spaces instead of four
|
|
|
|
Footnotes // Pandoc-style footnotes
|
|
|
|
NoEmptyLineBeforeBlock // No need to insert an empty line to start a (code, quote, ordered list, unordered list) block
|
|
|
|
HeaderIDs // specify header IDs with {#id}
|
|
|
|
Titleblock // Titleblock ala pandoc
|
|
|
|
AutoHeaderIDs // Create the header ID from the text
|
|
|
|
BackslashLineBreak // Translate trailing backslashes into line breaks
|
|
|
|
DefinitionLists // Render definition lists
|
|
|
|
TOC // Generate a table of contents
|
|
|
|
OmitContents // Skip the main contents (for a standalone table of contents)
|
2016-04-01 15:44:22 +08:00
|
|
|
|
2016-08-10 12:26:37 +08:00
|
|
|
CommonHTMLFlags HTMLFlags = UseXHTML | Smartypants |
|
|
|
|
SmartypantsFractions | SmartypantsDashes | SmartypantsLatexDashes
|
2015-10-26 23:29:52 +08:00
|
|
|
|
2016-03-31 00:29:00 +08:00
|
|
|
CommonExtensions Extensions = NoIntraEmphasis | Tables | FencedCode |
|
2015-10-26 23:29:52 +08:00
|
|
|
Autolink | Strikethrough | SpaceHeaders | HeaderIDs |
|
2016-08-10 12:26:37 +08:00
|
|
|
BackslashLineBreak | DefinitionLists
|
2011-05-25 06:14:35 +08:00
|
|
|
)
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// DefaultOptions is a convenience variable with all the options that are
|
|
|
|
// enabled by default.
|
2016-03-31 00:29:00 +08:00
|
|
|
var DefaultOptions = Options{
|
|
|
|
Extensions: CommonExtensions,
|
|
|
|
}
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// ListType contains bitwise or'ed flags for list and list item objects.
|
2015-10-26 23:29:52 +08:00
|
|
|
type ListType int
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// These are the possible flag values for the ListItem renderer.
|
2011-05-29 11:17:53 +08:00
|
|
|
// 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 (
|
2015-10-26 23:29:52 +08:00
|
|
|
ListTypeOrdered ListType = 1 << iota
|
|
|
|
ListTypeDefinition
|
|
|
|
ListTypeTerm
|
|
|
|
|
|
|
|
ListItemContainsBlock
|
2016-08-29 04:00:27 +08:00
|
|
|
ListItemBeginningOfList // TODO: figure out if this is of any use now
|
2015-10-26 23:29:52 +08:00
|
|
|
ListItemEndOfList
|
2011-05-26 03:59:30 +08:00
|
|
|
)
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// CellAlignFlags holds a type of alignment in a table cell.
|
2016-04-01 16:44:59 +08:00
|
|
|
type CellAlignFlags int
|
2015-10-26 23:29:52 +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 (
|
2015-10-26 23:29:52 +08:00
|
|
|
TableAlignmentLeft = 1 << iota
|
|
|
|
TableAlignmentRight
|
|
|
|
TableAlignmentCenter = (TableAlignmentLeft | TableAlignmentRight)
|
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 (
|
2015-10-26 23:29:52 +08:00
|
|
|
TabSizeDefault = 4
|
|
|
|
TabSizeDouble = 8
|
2011-06-29 00:58:10 +08:00
|
|
|
)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2015-11-10 13:18:55 +08:00
|
|
|
// blockTags is a set of tags that are recognized as HTML block tags.
|
2011-05-29 11:17:53 +08:00
|
|
|
// Any of these can be included in markdown text without special escaping.
|
2015-11-10 13:18:55 +08:00
|
|
|
var blockTags = map[string]struct{}{
|
|
|
|
"blockquote": struct{}{},
|
|
|
|
"del": struct{}{},
|
|
|
|
"div": struct{}{},
|
|
|
|
"dl": struct{}{},
|
|
|
|
"fieldset": struct{}{},
|
|
|
|
"form": struct{}{},
|
|
|
|
"h1": struct{}{},
|
|
|
|
"h2": struct{}{},
|
|
|
|
"h3": struct{}{},
|
|
|
|
"h4": struct{}{},
|
|
|
|
"h5": struct{}{},
|
|
|
|
"h6": struct{}{},
|
|
|
|
"iframe": struct{}{},
|
|
|
|
"ins": struct{}{},
|
|
|
|
"math": struct{}{},
|
|
|
|
"noscript": struct{}{},
|
|
|
|
"ol": struct{}{},
|
|
|
|
"pre": struct{}{},
|
|
|
|
"p": struct{}{},
|
|
|
|
"script": struct{}{},
|
|
|
|
"style": struct{}{},
|
|
|
|
"table": struct{}{},
|
|
|
|
"ul": struct{}{},
|
2012-10-22 12:28:31 +08:00
|
|
|
|
|
|
|
// HTML5
|
2015-11-10 13:18:55 +08:00
|
|
|
"address": struct{}{},
|
|
|
|
"article": struct{}{},
|
|
|
|
"aside": struct{}{},
|
|
|
|
"canvas": struct{}{},
|
|
|
|
"figcaption": struct{}{},
|
|
|
|
"figure": struct{}{},
|
|
|
|
"footer": struct{}{},
|
|
|
|
"header": struct{}{},
|
|
|
|
"hgroup": struct{}{},
|
|
|
|
"main": struct{}{},
|
|
|
|
"nav": struct{}{},
|
|
|
|
"output": struct{}{},
|
|
|
|
"progress": struct{}{},
|
|
|
|
"section": struct{}{},
|
|
|
|
"video": struct{}{},
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// Renderer is 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-07-08 01:56:45 +08:00
|
|
|
//
|
|
|
|
// When a byte slice is provided, it contains the (rendered) contents of the
|
|
|
|
// element.
|
|
|
|
//
|
|
|
|
// When a callback is provided instead, it will write the contents of the
|
|
|
|
// respective element directly to the output buffer and return true on success.
|
|
|
|
// If the callback returns false, the rendering function should reset the
|
|
|
|
// output buffer as though it had never been called.
|
|
|
|
//
|
2016-07-05 12:32:16 +08:00
|
|
|
// Currently HTML and Latex implementations are provided
|
2011-06-30 01:13:17 +08:00
|
|
|
type Renderer interface {
|
2016-03-30 19:47:30 +08:00
|
|
|
Render(ast *Node) []byte
|
2016-07-05 12:32:16 +08:00
|
|
|
RenderNode(w io.Writer, node *Node, entering bool) WalkStatus
|
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.
|
2016-08-19 13:56:33 +08:00
|
|
|
type inlineParser func(p *parser, data []byte, offset int) (int, *Node)
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// Parser holds runtime state used by the parser.
|
|
|
|
// This is constructed by the Markdown function.
|
|
|
|
type parser struct {
|
2014-12-17 07:17:49 +08:00
|
|
|
refOverride ReferenceOverrideFunc
|
2011-07-06 04:22:21 +08:00
|
|
|
refs map[string]*reference
|
|
|
|
inlineCallback [256]inlineParser
|
2015-10-27 00:16:57 +08:00
|
|
|
flags Extensions
|
2011-07-06 04:22:21 +08:00
|
|
|
nesting int
|
|
|
|
maxNesting int
|
|
|
|
insideLink bool
|
2013-06-25 09:18:47 +08:00
|
|
|
|
|
|
|
// Footnotes need to be ordered as well as available to quickly check for
|
|
|
|
// presence. If a ref is also a footnote, it's stored both in refs and here
|
|
|
|
// in notes. Slice is nil if footnotes not enabled.
|
|
|
|
notes []*reference
|
2016-03-30 17:57:12 +08:00
|
|
|
|
|
|
|
doc *Node
|
|
|
|
tip *Node // = doc
|
|
|
|
oldTip *Node
|
|
|
|
lastMatchedContainer *Node // = doc
|
|
|
|
allClosed bool
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2014-12-17 07:17:49 +08:00
|
|
|
func (p *parser) getRef(refid string) (ref *reference, found bool) {
|
|
|
|
if p.refOverride != nil {
|
|
|
|
r, overridden := p.refOverride(refid)
|
|
|
|
if overridden {
|
|
|
|
if r == nil {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
return &reference{
|
|
|
|
link: []byte(r.Link),
|
|
|
|
title: []byte(r.Title),
|
2016-07-28 02:28:41 +08:00
|
|
|
noteID: 0,
|
2014-12-19 08:36:46 +08:00
|
|
|
hasBlock: false,
|
|
|
|
text: []byte(r.Text)}, true
|
2014-12-17 07:17:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// refs are case insensitive
|
|
|
|
ref, found = p.refs[strings.ToLower(refid)]
|
|
|
|
return ref, found
|
|
|
|
}
|
|
|
|
|
2016-03-30 17:57:12 +08:00
|
|
|
func (p *parser) finalize(block *Node) {
|
|
|
|
above := block.Parent
|
|
|
|
block.open = false
|
|
|
|
p.tip = above
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) addChild(node NodeType, offset uint32) *Node {
|
|
|
|
for !p.tip.canContain(node) {
|
|
|
|
p.finalize(p.tip)
|
|
|
|
}
|
|
|
|
newNode := NewNode(node)
|
|
|
|
newNode.content = []byte{}
|
2016-08-09 11:36:55 +08:00
|
|
|
p.tip.AppendChild(newNode)
|
2016-03-30 17:57:12 +08:00
|
|
|
p.tip = newNode
|
|
|
|
return newNode
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) closeUnmatchedBlocks() {
|
|
|
|
if !p.allClosed {
|
|
|
|
for p.oldTip != p.lastMatchedContainer {
|
|
|
|
parent := p.oldTip.Parent
|
|
|
|
p.finalize(p.oldTip)
|
|
|
|
p.oldTip = parent
|
|
|
|
}
|
|
|
|
p.allClosed = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2014-12-17 07:17:49 +08:00
|
|
|
// Reference represents the details of a link.
|
|
|
|
// See the documentation in Options for more details on use-case.
|
|
|
|
type Reference struct {
|
|
|
|
// Link is usually the URL the reference points to.
|
|
|
|
Link string
|
|
|
|
// Title is the alternate text describing the link in more detail.
|
|
|
|
Title string
|
2014-12-19 08:36:46 +08:00
|
|
|
// Text is the optional text to override the ref with if the syntax used was
|
|
|
|
// [refid][]
|
|
|
|
Text string
|
2014-12-17 07:17:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReferenceOverrideFunc is expected to be called with a reference string and
|
|
|
|
// return either a valid Reference type that the reference string maps to or
|
|
|
|
// nil. If overridden is false, the default reference logic will be executed.
|
|
|
|
// See the documentation in Options for more details on use-case.
|
|
|
|
type ReferenceOverrideFunc func(reference string) (ref *Reference, overridden bool)
|
|
|
|
|
|
|
|
// Options represents configurable overrides and callbacks (in addition to the
|
|
|
|
// extension flag set) for configuring a Markdown parse.
|
|
|
|
type Options struct {
|
|
|
|
// Extensions is a flag set of bit-wise ORed extension bits. See the
|
2015-10-27 00:16:57 +08:00
|
|
|
// Extensions flags defined in this package.
|
|
|
|
Extensions Extensions
|
2014-12-17 07:17:49 +08:00
|
|
|
|
|
|
|
// ReferenceOverride is an optional function callback that is called every
|
|
|
|
// time a reference is resolved.
|
|
|
|
//
|
|
|
|
// In Markdown, the link reference syntax can be made to resolve a link to
|
|
|
|
// a reference instead of an inline URL, in one of the following ways:
|
|
|
|
//
|
|
|
|
// * [link text][refid]
|
|
|
|
// * [refid][]
|
|
|
|
//
|
|
|
|
// Usually, the refid is defined at the bottom of the Markdown document. If
|
|
|
|
// this override function is provided, the refid is passed to the override
|
|
|
|
// function first, before consulting the defined refids at the bottom. If
|
|
|
|
// the override function indicates an override did not occur, the refids at
|
|
|
|
// the bottom will be used to fill in the link details.
|
|
|
|
ReferenceOverride ReferenceOverrideFunc
|
|
|
|
}
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// MarkdownBasic is a convenience function for simple rendering.
|
|
|
|
// It processes markdown input with no extensions enabled.
|
2011-06-29 05:55:27 +08:00
|
|
|
func MarkdownBasic(input []byte) []byte {
|
|
|
|
// set up the HTML renderer
|
2016-04-05 19:18:32 +08:00
|
|
|
renderer := NewHTMLRenderer(HTMLRendererParameters{
|
|
|
|
Flags: UseXHTML,
|
|
|
|
Extensions: CommonExtensions,
|
|
|
|
})
|
2011-06-29 05:55:27 +08:00
|
|
|
|
|
|
|
// set up the parser
|
2016-04-05 19:34:30 +08:00
|
|
|
return Markdown(input, renderer, Options{})
|
2011-06-29 05:55:27 +08:00
|
|
|
}
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// MarkdownCommon is a convenience function for simple rendering. It calls
|
|
|
|
// Markdown with most useful extensions enabled, including:
|
2011-07-08 01:56:45 +08:00
|
|
|
//
|
|
|
|
// * Smartypants processing with smart fractions and LaTeX dashes
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2013-04-14 06:44:18 +08:00
|
|
|
// * Intra-word emphasis suppression
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2011-07-08 01:56:45 +08:00
|
|
|
// * Tables
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2011-07-08 01:56:45 +08:00
|
|
|
// * Fenced code blocks
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2011-07-08 01:56:45 +08:00
|
|
|
// * Autolinking
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2011-07-08 01:56:45 +08:00
|
|
|
// * Strikethrough support
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2011-07-08 01:56:45 +08:00
|
|
|
// * Strict header parsing
|
2016-07-29 00:23:04 +08:00
|
|
|
//
|
2014-04-06 03:45:57 +08:00
|
|
|
// * Custom Header IDs
|
2011-06-29 05:55:27 +08:00
|
|
|
func MarkdownCommon(input []byte) []byte {
|
|
|
|
// set up the HTML renderer
|
2016-04-05 19:18:32 +08:00
|
|
|
renderer := NewHTMLRenderer(HTMLRendererParameters{
|
2016-07-28 02:28:41 +08:00
|
|
|
Flags: CommonHTMLFlags,
|
2016-04-05 19:18:32 +08:00
|
|
|
Extensions: CommonExtensions,
|
|
|
|
})
|
2016-04-05 18:45:00 +08:00
|
|
|
return Markdown(input, renderer, DefaultOptions)
|
2011-06-29 05:55:27 +08:00
|
|
|
}
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// Markdown is the main rendering function.
|
|
|
|
// It parses and renders a block of markdown-encoded text.
|
|
|
|
// The supplied Renderer is used to format the output, and extensions dictates
|
|
|
|
// which non-standard extensions are enabled.
|
|
|
|
//
|
2016-04-05 19:18:32 +08:00
|
|
|
// To use the supplied HTML or LaTeX renderers, see NewHTMLRenderer and
|
|
|
|
// NewLatexRenderer, respectively.
|
2016-04-05 18:45:00 +08:00
|
|
|
func Markdown(input []byte, renderer Renderer, options Options) []byte {
|
2011-05-29 11:17:53 +08:00
|
|
|
if renderer == nil {
|
2011-05-29 12:37:12 +08:00
|
|
|
return nil
|
2011-05-26 10:46:16 +08:00
|
|
|
}
|
2016-04-05 18:45:00 +08:00
|
|
|
return renderer.Render(Parse(input, options))
|
2016-03-31 00:40:10 +08:00
|
|
|
}
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
// Parse is an entry point to the parsing part of Blackfriday. It takes an
|
|
|
|
// input markdown document and produces a syntax tree for its contents. This
|
|
|
|
// tree can then be rendered with a default or custom renderer, or
|
|
|
|
// analyzed/transformed by the caller to whatever non-standard needs they have.
|
2016-03-31 00:40:10 +08:00
|
|
|
func Parse(input []byte, opts Options) *Node {
|
2014-12-17 07:17:49 +08:00
|
|
|
extensions := opts.Extensions
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// fill in the render structure
|
2011-07-08 01:56:45 +08:00
|
|
|
p := new(parser)
|
|
|
|
p.flags = extensions
|
2014-12-17 07:17:49 +08:00
|
|
|
p.refOverride = opts.ReferenceOverride
|
2011-07-08 01:56:45 +08:00
|
|
|
p.refs = make(map[string]*reference)
|
|
|
|
p.maxNesting = 16
|
|
|
|
p.insideLink = false
|
2011-05-30 01:43:18 +08:00
|
|
|
|
2016-03-30 17:57:12 +08:00
|
|
|
docNode := NewNode(Document)
|
|
|
|
p.doc = docNode
|
|
|
|
p.tip = docNode
|
|
|
|
p.oldTip = docNode
|
|
|
|
p.lastMatchedContainer = docNode
|
|
|
|
p.allClosed = true
|
|
|
|
|
2011-05-30 01:43:18 +08:00
|
|
|
// register inline parsers
|
2016-08-19 13:56:33 +08:00
|
|
|
p.inlineCallback[' '] = maybeLineBreak
|
2011-07-08 01:56:45 +08:00
|
|
|
p.inlineCallback['*'] = emphasis
|
|
|
|
p.inlineCallback['_'] = emphasis
|
2015-10-27 00:16:57 +08:00
|
|
|
if extensions&Strikethrough != 0 {
|
2011-07-08 01:56:45 +08:00
|
|
|
p.inlineCallback['~'] = emphasis
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-07-08 01:56:45 +08:00
|
|
|
p.inlineCallback['`'] = codeSpan
|
|
|
|
p.inlineCallback['\n'] = lineBreak
|
|
|
|
p.inlineCallback['['] = link
|
|
|
|
p.inlineCallback['<'] = leftAngle
|
|
|
|
p.inlineCallback['\\'] = escape
|
|
|
|
p.inlineCallback['&'] = entity
|
2015-10-27 02:47:20 +08:00
|
|
|
p.inlineCallback['!'] = maybeImage
|
|
|
|
p.inlineCallback['^'] = maybeInlineFootnote
|
2011-05-26 10:46:16 +08:00
|
|
|
|
2015-10-27 00:16:57 +08:00
|
|
|
if extensions&Autolink != 0 {
|
2015-10-28 03:56:16 +08:00
|
|
|
p.inlineCallback['h'] = maybeAutoLink
|
|
|
|
p.inlineCallback['m'] = maybeAutoLink
|
|
|
|
p.inlineCallback['f'] = maybeAutoLink
|
|
|
|
p.inlineCallback['H'] = maybeAutoLink
|
|
|
|
p.inlineCallback['M'] = maybeAutoLink
|
|
|
|
p.inlineCallback['F'] = maybeAutoLink
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2015-10-27 00:16:57 +08:00
|
|
|
if extensions&Footnotes != 0 {
|
2013-06-25 09:18:47 +08:00
|
|
|
p.notes = make([]*reference, 0)
|
|
|
|
}
|
|
|
|
|
2016-08-29 03:53:04 +08:00
|
|
|
p.block(firstPass(p, input))
|
2016-04-01 15:44:22 +08:00
|
|
|
// Walk the tree and finish up some of unfinished blocks
|
2016-03-30 19:47:30 +08:00
|
|
|
for p.tip != nil {
|
|
|
|
p.finalize(p.tip)
|
|
|
|
}
|
2016-04-01 15:44:22 +08:00
|
|
|
// Walk the tree again and process inline markdown in each block
|
2016-04-05 16:10:46 +08:00
|
|
|
p.doc.Walk(func(node *Node, entering bool) WalkStatus {
|
2016-03-30 19:47:30 +08:00
|
|
|
if node.Type == Paragraph || node.Type == Header || node.Type == TableCell {
|
2016-08-19 13:56:33 +08:00
|
|
|
p.inline(node, node.content)
|
2016-03-30 19:47:30 +08:00
|
|
|
node.content = nil
|
|
|
|
}
|
2016-04-05 16:10:46 +08:00
|
|
|
return GoToNext
|
2016-03-30 19:47:30 +08:00
|
|
|
})
|
|
|
|
p.parseRefsToAST()
|
2016-03-31 00:40:10 +08:00
|
|
|
return p.doc
|
2016-03-30 19:47:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parser) parseRefsToAST() {
|
|
|
|
if p.flags&Footnotes == 0 || len(p.notes) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.tip = p.doc
|
|
|
|
block := p.addBlock(List, nil)
|
2016-09-03 17:39:16 +08:00
|
|
|
block.IsFootnotesList = true
|
2016-04-01 16:21:25 +08:00
|
|
|
block.ListFlags = ListTypeOrdered
|
2016-03-30 19:47:30 +08:00
|
|
|
flags := ListItemBeginningOfList
|
|
|
|
// Note: this loop is intentionally explicit, not range-form. This is
|
|
|
|
// because the body of the loop will append nested footnotes to p.notes and
|
|
|
|
// we need to process those late additions. Range form would only walk over
|
|
|
|
// the fixed initial set.
|
|
|
|
for i := 0; i < len(p.notes); i++ {
|
|
|
|
ref := p.notes[i]
|
|
|
|
block := p.addBlock(Item, nil)
|
2016-08-29 04:00:27 +08:00
|
|
|
block.ListFlags = flags | ListTypeOrdered
|
2016-04-01 16:21:25 +08:00
|
|
|
block.RefLink = ref.link
|
2016-03-30 19:47:30 +08:00
|
|
|
if ref.hasBlock {
|
|
|
|
flags |= ListItemContainsBlock
|
|
|
|
p.block(ref.title)
|
|
|
|
} else {
|
2016-08-19 13:56:33 +08:00
|
|
|
p.inline(block, ref.title)
|
2016-03-30 19:47:30 +08:00
|
|
|
}
|
|
|
|
flags &^= ListItemBeginningOfList | ListItemContainsBlock
|
|
|
|
}
|
|
|
|
above := block.Parent
|
|
|
|
finalizeList(block)
|
|
|
|
p.tip = above
|
2016-04-05 16:10:46 +08:00
|
|
|
block.Walk(func(node *Node, entering bool) WalkStatus {
|
2016-03-30 19:47:30 +08:00
|
|
|
if node.Type == Paragraph || node.Type == Header {
|
2016-08-19 13:56:33 +08:00
|
|
|
p.inline(node, node.content)
|
2016-03-30 19:47:30 +08:00
|
|
|
node.content = nil
|
|
|
|
}
|
2016-04-05 16:10:46 +08:00
|
|
|
return GoToNext
|
2016-03-30 19:47:30 +08:00
|
|
|
})
|
2011-06-26 23:51:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// first pass:
|
|
|
|
// - normalize newlines
|
2016-07-16 05:03:02 +08:00
|
|
|
// - expand tabs (outside of fenced code blocks)
|
2011-06-26 23:51:36 +08:00
|
|
|
// - copy everything else
|
2011-07-08 01:56:45 +08:00
|
|
|
func firstPass(p *parser, input []byte) []byte {
|
2011-06-26 23:51:36 +08:00
|
|
|
var out bytes.Buffer
|
2015-10-27 00:16:57 +08:00
|
|
|
tabSize := TabSizeDefault
|
|
|
|
if p.flags&TabSizeEight != 0 {
|
|
|
|
tabSize = TabSizeDouble
|
2011-06-29 00:58:10 +08:00
|
|
|
}
|
2016-07-16 05:03:02 +08:00
|
|
|
beg := 0
|
2014-03-31 03:57:58 +08:00
|
|
|
lastFencedCodeBlockEnd := 0
|
2016-07-16 05:03:02 +08:00
|
|
|
for beg < len(input) {
|
|
|
|
// Find end of this line, then process the line.
|
|
|
|
end := beg
|
|
|
|
for end < len(input) && input[end] != '\n' && input[end] != '\r' {
|
|
|
|
end++
|
|
|
|
}
|
2014-03-31 03:57:58 +08:00
|
|
|
|
2016-07-16 05:03:02 +08:00
|
|
|
if p.flags&FencedCode != 0 {
|
|
|
|
// track fenced code block boundaries to suppress tab expansion
|
|
|
|
// and reference extraction inside them:
|
|
|
|
if beg >= lastFencedCodeBlockEnd {
|
|
|
|
if i := p.fencedCodeBlock(input[beg:], false); i > 0 {
|
|
|
|
lastFencedCodeBlockEnd = beg + i
|
2014-04-13 05:45:25 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2016-07-16 05:03:02 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2016-07-16 05:03:02 +08:00
|
|
|
// add the line body if present
|
|
|
|
if end > beg {
|
|
|
|
if end < lastFencedCodeBlockEnd { // Do not expand tabs while inside fenced code blocks.
|
|
|
|
out.Write(input[beg:end])
|
|
|
|
} else {
|
|
|
|
expandTabs(&out, input[beg:end], tabSize)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2016-07-16 05:03:02 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2016-07-16 05:03:02 +08:00
|
|
|
if end < len(input) && input[end] == '\r' {
|
|
|
|
end++
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2016-07-16 05:03:02 +08:00
|
|
|
if end < len(input) && input[end] == '\n' {
|
|
|
|
end++
|
|
|
|
}
|
|
|
|
out.WriteByte('\n')
|
|
|
|
|
|
|
|
beg = end
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-07-04 00:51:07 +08:00
|
|
|
|
|
|
|
// empty input?
|
|
|
|
if out.Len() == 0 {
|
|
|
|
out.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
2011-06-26 23:51:36 +08:00
|
|
|
return out.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.
|
2013-06-25 09:18:47 +08:00
|
|
|
//
|
|
|
|
// Actual footnotes as specified in Pandoc and supported by some other Markdown
|
|
|
|
// libraries such as php-markdown are also taken care of. They look like this:
|
|
|
|
//
|
|
|
|
// This sentence needs a bit of further explanation.[^note]
|
|
|
|
//
|
|
|
|
// [^note]: This is the explanation.
|
|
|
|
//
|
|
|
|
// Footnotes should be placed at the end of the document in an ordered list.
|
|
|
|
// Inline footnotes such as:
|
|
|
|
//
|
|
|
|
// Inline footnotes^[Not supported.] also exist.
|
|
|
|
//
|
|
|
|
// are not yet supported.
|
2011-05-26 03:59:30 +08:00
|
|
|
|
2016-09-03 18:16:41 +08:00
|
|
|
// reference holds all information necessary for a reference-style links or
|
|
|
|
// footnotes.
|
|
|
|
//
|
|
|
|
// Consider this markdown with reference-style links:
|
|
|
|
//
|
|
|
|
// [link][ref]
|
|
|
|
//
|
|
|
|
// [ref]: /url/ "tooltip title"
|
|
|
|
//
|
|
|
|
// It will be ultimately converted to this HTML:
|
|
|
|
//
|
|
|
|
// <p><a href=\"/url/\" title=\"title\">link</a></p>
|
|
|
|
//
|
|
|
|
// And a reference structure will be populated as follows:
|
|
|
|
//
|
|
|
|
// p.refs["ref"] = &reference{
|
|
|
|
// link: "/url/",
|
|
|
|
// title: "tooltip title",
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// Alternatively, reference can contain an information about a footnote.
|
|
|
|
// Consider this markdown:
|
|
|
|
//
|
|
|
|
// Text needing a footnote.[^a]
|
|
|
|
//
|
|
|
|
// [^a]: This is the note
|
|
|
|
//
|
|
|
|
// A reference structure will be populated as follows:
|
|
|
|
//
|
|
|
|
// p.refs["a"] = &reference{
|
|
|
|
// link: "a",
|
|
|
|
// title: "This is the note",
|
|
|
|
// noteID: <some positive int>,
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// TODO: As you can see, it begs for splitting into two dedicated structures
|
|
|
|
// for refs and for footnotes.
|
2011-05-30 01:43:18 +08:00
|
|
|
type reference struct {
|
2013-06-26 23:57:51 +08:00
|
|
|
link []byte
|
|
|
|
title []byte
|
2016-07-28 02:28:41 +08:00
|
|
|
noteID int // 0 if not a footnote ref
|
2013-06-26 23:57:51 +08:00
|
|
|
hasBlock bool
|
2016-09-03 18:16:41 +08:00
|
|
|
|
|
|
|
text []byte // only gets populated by refOverride feature with Reference.Text
|
2011-05-25 06:14:35 +08:00
|
|
|
}
|
|
|
|
|
2015-11-03 02:24:34 +08:00
|
|
|
func (r *reference) String() string {
|
2016-07-28 02:28:41 +08:00
|
|
|
return fmt.Sprintf("{link: %q, title: %q, text: %q, noteID: %d, hasBlock: %v}",
|
|
|
|
r.link, r.title, r.text, r.noteID, r.hasBlock)
|
2015-11-03 02:24:34 +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.
|
2013-06-25 09:18:47 +08:00
|
|
|
func isReference(p *parser, data []byte, tabSize int) 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
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
noteID := 0
|
2013-06-25 09:18:47 +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++
|
2015-10-27 00:16:57 +08:00
|
|
|
if p.flags&Footnotes != 0 {
|
2015-06-08 15:31:55 +08:00
|
|
|
if i < len(data) && data[i] == '^' {
|
2013-07-01 09:37:52 +08:00
|
|
|
// we can set it to anything here because the proper noteIds will
|
|
|
|
// be assigned later during the second pass. It just has to be != 0
|
2016-07-28 02:28:41 +08:00
|
|
|
noteID = 1
|
2013-06-25 09:18:47 +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
|
2016-08-30 04:57:59 +08:00
|
|
|
// footnotes can have empty ID, like this: [^], but a reference can not be
|
|
|
|
// empty like this: []. Break early if it's not a footnote and there's no ID
|
|
|
|
if noteID == 0 && idOffset == idEnd {
|
|
|
|
return 0
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
var (
|
|
|
|
linkOffset, linkEnd int
|
|
|
|
titleOffset, titleEnd int
|
|
|
|
lineEnd int
|
|
|
|
raw []byte
|
2013-06-26 23:57:51 +08:00
|
|
|
hasBlock bool
|
2013-06-25 09:18:47 +08:00
|
|
|
)
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
if p.flags&Footnotes != 0 && noteID != 0 {
|
2013-06-26 23:57:51 +08:00
|
|
|
linkOffset, linkEnd, raw, hasBlock = scanFootnote(p, data, i, tabSize)
|
|
|
|
lineEnd = linkEnd
|
2013-06-25 09:18:47 +08:00
|
|
|
} else {
|
|
|
|
linkOffset, linkEnd, titleOffset, titleEnd, lineEnd = scanLinkRef(p, data, i)
|
|
|
|
}
|
|
|
|
if lineEnd == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// a valid ref has been found
|
|
|
|
|
|
|
|
ref := &reference{
|
2016-07-28 02:28:41 +08:00
|
|
|
noteID: noteID,
|
2013-06-26 23:57:51 +08:00
|
|
|
hasBlock: hasBlock,
|
2013-06-25 09:18:47 +08:00
|
|
|
}
|
|
|
|
|
2016-07-28 02:28:41 +08:00
|
|
|
if noteID > 0 {
|
2013-06-26 23:57:51 +08:00
|
|
|
// reusing the link field for the id since footnotes don't have links
|
2013-06-25 09:18:47 +08:00
|
|
|
ref.link = data[idOffset:idEnd]
|
|
|
|
// if footnote, it's not really a title, it's the contained text
|
|
|
|
ref.title = raw
|
|
|
|
} else {
|
|
|
|
ref.link = data[linkOffset:linkEnd]
|
|
|
|
ref.title = data[titleOffset:titleEnd]
|
|
|
|
}
|
|
|
|
|
|
|
|
// id matches are case-insensitive
|
|
|
|
id := string(bytes.ToLower(data[idOffset:idEnd]))
|
2013-07-09 06:34:12 +08:00
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
p.refs[id] = ref
|
2013-07-09 06:34:12 +08:00
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
return lineEnd
|
|
|
|
}
|
|
|
|
|
|
|
|
func scanLinkRef(p *parser, data []byte, i int) (linkOffset, linkEnd, titleOffset, titleEnd, lineEnd int) {
|
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++
|
|
|
|
}
|
2013-06-25 09:18:47 +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
|
|
|
}
|
2015-06-08 15:31:55 +08:00
|
|
|
if i == len(data) {
|
|
|
|
return
|
|
|
|
}
|
2013-06-25 09:18:47 +08:00
|
|
|
linkEnd = i
|
2011-06-29 06:02:12 +08:00
|
|
|
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] != '(' {
|
2013-06-25 09:18:47 +08:00
|
|
|
return
|
2011-05-27 12:27:33 +08:00
|
|
|
}
|
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
// compute end-of-line
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2013-06-25 09:18:47 +08:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// The first bit of this logic is the same as (*parser).listItem, but the rest
|
|
|
|
// is much simpler. This function simply finds the entire block and shifts it
|
|
|
|
// over by one tab if it is indeed a block (just returns the line if it's not).
|
|
|
|
// blockEnd is the end of the section in the input buffer, and contents is the
|
|
|
|
// extracted text that was shifted over one tab. It will need to be rendered at
|
|
|
|
// the end of the document.
|
2013-06-26 23:57:51 +08:00
|
|
|
func scanFootnote(p *parser, data []byte, i, indentSize int) (blockStart, blockEnd int, contents []byte, hasBlock bool) {
|
2013-07-08 14:54:25 +08:00
|
|
|
if i == 0 || len(data) == 0 {
|
2013-06-25 09:18:47 +08:00
|
|
|
return
|
2011-05-29 07:37:18 +08:00
|
|
|
}
|
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
// skip leading whitespace on first line
|
2013-07-08 14:54:25 +08:00
|
|
|
for i < len(data) && data[i] == ' ' {
|
2013-06-25 09:18:47 +08:00
|
|
|
i++
|
|
|
|
}
|
2011-05-30 01:43:18 +08:00
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
blockStart = i
|
|
|
|
|
|
|
|
// find the end of the line
|
|
|
|
blockEnd = i
|
2013-06-26 23:57:51 +08:00
|
|
|
for i < len(data) && data[i-1] != '\n' {
|
2013-06-25 09:18:47 +08:00
|
|
|
i++
|
2011-05-30 01:43:18 +08:00
|
|
|
}
|
2011-05-29 07:37:18 +08:00
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
// get working buffer
|
|
|
|
var raw bytes.Buffer
|
|
|
|
|
|
|
|
// put the first line into the working buffer
|
|
|
|
raw.Write(data[blockEnd:i])
|
|
|
|
blockEnd = i
|
|
|
|
|
|
|
|
// process the following lines
|
|
|
|
containsBlankLine := false
|
|
|
|
|
|
|
|
gatherLines:
|
|
|
|
for blockEnd < len(data) {
|
|
|
|
i++
|
|
|
|
|
|
|
|
// find the end of this line
|
2013-06-26 23:57:51 +08:00
|
|
|
for i < len(data) && data[i-1] != '\n' {
|
2013-06-25 09:18:47 +08:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
// if it is an empty line, guess that it is part of this item
|
|
|
|
// and move on to the next line
|
|
|
|
if p.isEmpty(data[blockEnd:i]) > 0 {
|
|
|
|
containsBlankLine = true
|
|
|
|
blockEnd = i
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
n := 0
|
|
|
|
if n = isIndented(data[blockEnd:i], indentSize); n == 0 {
|
|
|
|
// this is the end of the block.
|
|
|
|
// we don't want to include this last line in the index.
|
|
|
|
break gatherLines
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there were blank lines before this one, insert a new one now
|
|
|
|
if containsBlankLine {
|
|
|
|
raw.WriteByte('\n')
|
|
|
|
containsBlankLine = false
|
|
|
|
}
|
|
|
|
|
|
|
|
// get rid of that first tab, write to buffer
|
|
|
|
raw.Write(data[blockEnd+n : i])
|
2013-06-26 23:57:51 +08:00
|
|
|
hasBlock = true
|
2013-06-25 09:18:47 +08:00
|
|
|
|
|
|
|
blockEnd = i
|
|
|
|
}
|
|
|
|
|
2013-06-26 23:57:51 +08:00
|
|
|
if data[blockEnd-1] != '\n' {
|
|
|
|
raw.WriteByte('\n')
|
2013-06-25 09:18:47 +08:00
|
|
|
}
|
2013-06-26 23:57:51 +08:00
|
|
|
|
|
|
|
contents = raw.Bytes()
|
2013-06-25 09:18:47 +08:00
|
|
|
|
|
|
|
return
|
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
|
|
|
}
|
|
|
|
|
2013-08-09 17:24:26 +08:00
|
|
|
// Test if a character is letter.
|
|
|
|
func isletter(c byte) bool {
|
|
|
|
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
|
|
|
|
}
|
|
|
|
|
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 {
|
2013-08-09 17:24:26 +08:00
|
|
|
return (c >= '0' && c <= '9') || isletter(c)
|
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++
|
|
|
|
}
|
|
|
|
}
|
2013-06-25 09:18:47 +08:00
|
|
|
|
|
|
|
// Find if a line counts as indented or not.
|
|
|
|
// Returns number of characters the indent is (0 = not indented).
|
|
|
|
func isIndented(data []byte, indentSize int) int {
|
|
|
|
if len(data) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if data[0] == '\t' {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if len(data) < indentSize {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
for i := 0; i < indentSize; i++ {
|
|
|
|
if data[i] != ' ' {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return indentSize
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a url-safe slug for fragments
|
|
|
|
func slugify(in []byte) []byte {
|
|
|
|
if len(in) == 0 {
|
|
|
|
return in
|
|
|
|
}
|
|
|
|
out := make([]byte, 0, len(in))
|
|
|
|
sym := false
|
|
|
|
|
|
|
|
for _, ch := range in {
|
|
|
|
if isalnum(ch) {
|
|
|
|
sym = false
|
|
|
|
out = append(out, ch)
|
|
|
|
} else if sym {
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
out = append(out, '-')
|
|
|
|
sym = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var a, b int
|
|
|
|
var ch byte
|
|
|
|
for a, ch = range out {
|
|
|
|
if ch != '-' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for b = len(out) - 1; b > 0; b-- {
|
|
|
|
if out[b] != '-' {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out[a : b+1]
|
|
|
|
}
|