/* Package parser implements parser for markdown text that generates AST (abstract syntax tree). */ package parser import ( "bytes" "fmt" "strings" "unicode/utf8" "github.com/gomarkdown/markdown/ast" ) // Extensions is a bitmask of enabled parser extensions. type Extensions int // Bit flags representing markdown parsing extensions. // Use | (or) to specify multiple extensions. const ( NoExtensions Extensions = 0 NoIntraEmphasis Extensions = 1 << iota // Ignore emphasis markers inside words Tables // Parse tables FencedCode // Parse fenced code blocks Autolink // Detect embedded URLs that are not explicitly marked Strikethrough // Strikethrough text using ~~test~~ LaxHTMLBlocks // Loosen up HTML block parsing rules SpaceHeadings // Be strict about prefix heading rules HardLineBreak // Translate newlines into line breaks NonBlockingSpace // Translate backspace spaces into line non-blocking spaces 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 HeadingIDs // specify heading IDs with {#id} Titleblock // Titleblock ala pandoc AutoHeadingIDs // Create the heading ID from the text BackslashLineBreak // Translate trailing backslashes into line breaks DefinitionLists // Parse definition lists MathJax // Parse MathJax OrderedListStart // Keep track of the first number used when starting an ordered list. Attributes // Block Attributes SuperSubscript // Super- and subscript support: 2^10^, H~2~O. EmptyLinesBreakList // 2 empty lines break out of list Includes // Support including other files. Mmark // Support Mmark syntax, see https://mmark.nl/syntax CommonExtensions Extensions = NoIntraEmphasis | Tables | FencedCode | Autolink | Strikethrough | SpaceHeadings | HeadingIDs | BackslashLineBreak | DefinitionLists | MathJax ) // The size of a tab stop. const ( tabSizeDefault = 4 tabSizeDouble = 8 ) // for each character that triggers a response when parsing inline data. type inlineParser func(p *Parser, data []byte, offset int) (int, ast.Node) // 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) // Parser is a type that holds extensions and the runtime state used by // Parse, and the renderer. You can not use it directly, construct it with New. type Parser struct { // ReferenceOverride is an optional function callback that is called every // time a reference is resolved. It can be set before starting parsing. // // 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 Opts Options // after parsing, this is AST root of parsed markdown text Doc ast.Node extensions Extensions refs map[string]*reference refsRecord map[string]struct{} inlineCallback [256]inlineParser nesting int maxNesting int insideLink bool indexCnt int // incremented after every index // 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 tip ast.Node // = doc oldTip ast.Node lastMatchedContainer ast.Node // = doc allClosed bool // Attributes are attached to block level elements. attr *ast.Attribute includeStack *incStack } // New creates a markdown parser with CommonExtensions. // // You can then call `doc := p.Parse(markdown)` to parse markdown document // and `markdown.Render(doc, renderer)` to convert it to another format with // a renderer. func New() *Parser { return NewWithExtensions(CommonExtensions) } // NewWithExtensions creates a markdown parser with given extensions. func NewWithExtensions(extension Extensions) *Parser { p := Parser{ refs: make(map[string]*reference), refsRecord: make(map[string]struct{}), maxNesting: 16, insideLink: false, Doc: &ast.Document{}, extensions: extension, allClosed: true, includeStack: newIncStack(), } p.tip = p.Doc p.oldTip = p.Doc p.lastMatchedContainer = p.Doc p.inlineCallback[' '] = maybeLineBreak p.inlineCallback['*'] = emphasis p.inlineCallback['_'] = emphasis if p.extensions&Strikethrough != 0 { p.inlineCallback['~'] = emphasis } p.inlineCallback['`'] = codeSpan p.inlineCallback['\n'] = lineBreak p.inlineCallback['['] = link p.inlineCallback['<'] = leftAngle p.inlineCallback['\\'] = escape p.inlineCallback['&'] = entity p.inlineCallback['!'] = maybeImage if p.extensions&Mmark != 0 { p.inlineCallback['('] = maybeShortRefOrIndex } p.inlineCallback['^'] = maybeInlineFootnoteOrSuper if p.extensions&Autolink != 0 { p.inlineCallback['h'] = maybeAutoLink p.inlineCallback['m'] = maybeAutoLink p.inlineCallback['f'] = maybeAutoLink p.inlineCallback['H'] = maybeAutoLink p.inlineCallback['M'] = maybeAutoLink p.inlineCallback['F'] = maybeAutoLink } if p.extensions&MathJax != 0 { p.inlineCallback['$'] = math } return &p } func (p *Parser) getRef(refid string) (ref *reference, found bool) { if p.ReferenceOverride != nil { r, overridden := p.ReferenceOverride(refid) if overridden { if r == nil { return nil, false } return &reference{ link: []byte(r.Link), title: []byte(r.Title), noteID: 0, hasBlock: false, text: []byte(r.Text)}, true } } // refs are case insensitive ref, found = p.refs[strings.ToLower(refid)] return ref, found } func (p *Parser) isFootnote(ref *reference) bool { _, ok := p.refsRecord[string(ref.link)] return ok } func (p *Parser) finalize(block ast.Node) { p.tip = block.GetParent() } func (p *Parser) addChild(node ast.Node) ast.Node { for !canNodeContain(p.tip, node) { p.finalize(p.tip) } ast.AppendChild(p.tip, node) p.tip = node return node } func canNodeContain(n ast.Node, v ast.Node) bool { switch n.(type) { case *ast.List: return isListItem(v) case *ast.Document, *ast.BlockQuote, *ast.Aside, *ast.ListItem, *ast.CaptionFigure: return !isListItem(v) case *ast.Table: switch v.(type) { case *ast.TableHeader, *ast.TableBody, *ast.TableFooter: return true default: return false } case *ast.TableHeader, *ast.TableBody, *ast.TableFooter: _, ok := v.(*ast.TableRow) return ok case *ast.TableRow: _, ok := v.(*ast.TableCell) return ok } return false } func (p *Parser) closeUnmatchedBlocks() { if p.allClosed { return } for p.oldTip != p.lastMatchedContainer { parent := p.oldTip.GetParent() p.finalize(p.oldTip) p.oldTip = parent } p.allClosed = true } // 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 // Text is the optional text to override the ref with if the syntax used was // [refid][] Text string } // Parse generates AST (abstract syntax tree) representing markdown document. // // The result is a root of the tree whose underlying type is *ast.Document // // You can then convert AST to html using html.Renderer, to some other format // using a custom renderer or transform the tree. func (p *Parser) Parse(input []byte) ast.Node { p.block(input) // Walk the tree and finish up some of unfinished blocks for p.tip != nil { p.finalize(p.tip) } // Walk the tree again and process inline markdown in each block ast.WalkFunc(p.Doc, func(node ast.Node, entering bool) ast.WalkStatus { switch node.(type) { case *ast.Paragraph, *ast.Heading, *ast.TableCell: p.Inline(node, node.AsContainer().Content) node.AsContainer().Content = nil } return ast.GoToNext }) if p.Opts.Flags&SkipFootnoteList == 0 { p.parseRefsToAST() } return p.Doc } func (p *Parser) parseRefsToAST() { if p.extensions&Footnotes == 0 || len(p.notes) == 0 { return } p.tip = p.Doc list := &ast.List{ IsFootnotesList: true, ListFlags: ast.ListTypeOrdered, } p.addBlock(&ast.Footnotes{}) block := p.addBlock(list) flags := ast.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] p.addChild(ref.footnote) block := ref.footnote listItem := block.(*ast.ListItem) listItem.ListFlags = flags | ast.ListTypeOrdered listItem.RefLink = ref.link if ref.hasBlock { flags |= ast.ListItemContainsBlock p.block(ref.title) } else { p.Inline(block, ref.title) } flags &^= ast.ListItemBeginningOfList | ast.ListItemContainsBlock } above := list.Parent finalizeList(list) p.tip = above ast.WalkFunc(block, func(node ast.Node, entering bool) ast.WalkStatus { switch node.(type) { case *ast.Paragraph, *ast.Heading: p.Inline(node, node.AsContainer().Content) node.AsContainer().Content = nil } return ast.GoToNext }) } // // Link references // // 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: // // [1]: http://www.google.com/ "Google" // [2]: http://www.github.com/ "Github" // // 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. // // 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. // 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: // //
// // And a reference structure will be populated as follows: // // p.refs["ref"] = &reference{ // link: "/url/", // title: "tooltip title", // } // // Alternatively, reference can contain 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: