2011-05-29 11:17:53 +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-29 11:17:53 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// HTML rendering backend
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
package blackfriday
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2014-01-22 07:14:35 +08:00
|
|
|
"regexp"
|
2011-05-29 11:17:53 +08:00
|
|
|
"strconv"
|
2011-06-30 05:38:35 +08:00
|
|
|
"strings"
|
2011-05-29 11:17:53 +08:00
|
|
|
)
|
|
|
|
|
2011-07-08 02:05:29 +08:00
|
|
|
// Html renderer configuration options.
|
2011-05-29 11:17:53 +08:00
|
|
|
const (
|
2014-11-30 12:41:11 +08:00
|
|
|
HTML_SKIP_HTML = 1 << iota // skip preformatted HTML blocks
|
|
|
|
HTML_SKIP_STYLE // skip embedded <style> elements
|
|
|
|
HTML_SKIP_IMAGES // skip embedded images
|
|
|
|
HTML_SKIP_LINKS // skip all links
|
|
|
|
HTML_SAFELINK // only link to trusted protocols
|
|
|
|
HTML_NOFOLLOW_LINKS // only link with rel="nofollow"
|
2015-03-15 07:46:32 +08:00
|
|
|
HTML_NOREFERRER_LINKS // only link with rel="noreferrer"
|
2014-11-30 12:41:11 +08:00
|
|
|
HTML_HREF_TARGET_BLANK // add a blank target
|
|
|
|
HTML_TOC // generate a table of contents
|
|
|
|
HTML_OMIT_CONTENTS // skip the main contents (for a standalone table of contents)
|
|
|
|
HTML_COMPLETE_PAGE // generate a complete HTML page
|
|
|
|
HTML_USE_XHTML // generate XHTML output instead of HTML
|
|
|
|
HTML_USE_SMARTYPANTS // enable smart punctuation substitutions
|
|
|
|
HTML_SMARTYPANTS_FRACTIONS // enable smart fractions (with HTML_USE_SMARTYPANTS)
|
|
|
|
HTML_SMARTYPANTS_LATEX_DASHES // enable LaTeX-style dashes (with HTML_USE_SMARTYPANTS)
|
|
|
|
HTML_SMARTYPANTS_ANGLED_QUOTES // enable angled double quotes (with HTML_USE_SMARTYPANTS) for double quotes rendering
|
|
|
|
HTML_FOOTNOTE_RETURN_LINKS // generate a link at the end of a footnote to return to the source
|
2011-05-29 11:17:53 +08:00
|
|
|
)
|
|
|
|
|
2014-01-22 07:14:35 +08:00
|
|
|
var (
|
2014-04-20 05:59:04 +08:00
|
|
|
alignments = []string{
|
|
|
|
"left",
|
|
|
|
"right",
|
|
|
|
"center",
|
|
|
|
}
|
|
|
|
|
2014-01-27 03:39:38 +08:00
|
|
|
// TODO: improve this regexp to catch all possible entities:
|
|
|
|
htmlEntity = regexp.MustCompile(`&[a-z]{2,5};`)
|
2014-01-22 07:14:35 +08:00
|
|
|
)
|
|
|
|
|
2014-05-24 15:55:13 +08:00
|
|
|
type HtmlRendererParameters struct {
|
2014-05-29 22:17:20 +08:00
|
|
|
// Prepend this text to each relative URL.
|
2014-05-24 15:55:13 +08:00
|
|
|
AbsolutePrefix string
|
2014-05-29 12:52:45 +08:00
|
|
|
// Add this text to each footnote anchor, to ensure uniqueness.
|
2014-05-25 02:29:39 +08:00
|
|
|
FootnoteAnchorPrefix string
|
|
|
|
// Show this text inside the <a> tag for a footnote return link, if the
|
|
|
|
// HTML_FOOTNOTE_RETURN_LINKS flag is enabled. If blank, the string
|
|
|
|
// <sup>[return]</sup> is used.
|
|
|
|
FootnoteReturnLinkContents string
|
Allow configurable header ID prefix/suffixes.
This is specifically driven by the Hugo usecase where multiple documents
are often rendered into the same ultimate HTML page.
When a header ID is written to the output HTML format (either through
`HTML_TOC`, `EXTENSION_HEADER_IDS`, or `EXTENSION_AUTO_HEADER_IDS`), it
is possible that multiple documents will hvae identical header IDs. To
permit validation to pass, it is useful to have a per-document prefix or
suffix (in our case, an MD5 of the content filename, and we will be
using it as a suffix).
That is, two documents (`A` and `B`) that have the same header ID (`#
Reason {#reason}`), will end up having an actual header ID of the form
`#reason-DOCID` (e.g., `#reason-A`, `#reason-B`) with these HTML
parameters.
This is built on top of #126 (more intelligent collision detection for
`EXTENSION_AUTO_HEADER_IDS`).
2014-11-24 09:37:27 +08:00
|
|
|
// If set, add this text to the front of each Header ID, to ensure
|
|
|
|
// uniqueness.
|
|
|
|
HeaderIDPrefix string
|
|
|
|
// If set, add this text to the back of each Header ID, to ensure uniqueness.
|
|
|
|
HeaderIDSuffix string
|
2014-05-24 15:55:13 +08:00
|
|
|
}
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// Html is a type that implements the Renderer interface for HTML output.
|
|
|
|
//
|
|
|
|
// Do not create this directly, instead use the HtmlRenderer function.
|
2011-06-30 01:13:17 +08:00
|
|
|
type Html struct {
|
2014-05-24 15:55:13 +08:00
|
|
|
flags int // HTML_* options
|
|
|
|
closeTag string // how to end singleton tags: either " />\n" or ">\n"
|
|
|
|
title string // document title
|
|
|
|
css string // optional css file url (used with HTML_COMPLETE_PAGE)
|
|
|
|
|
|
|
|
parameters HtmlRendererParameters
|
2011-06-30 00:08:56 +08:00
|
|
|
|
|
|
|
// table of contents data
|
2011-06-30 00:36:56 +08:00
|
|
|
tocMarker int
|
2011-06-30 00:08:56 +08:00
|
|
|
headerCount int
|
|
|
|
currentLevel int
|
|
|
|
toc *bytes.Buffer
|
|
|
|
|
Prevent generated header collisions, less naively.
> This is a rework of an earlier version of this code.
The automatic header ID generation code submitted in #125 has a subtle
bug where it will use the same ID for multiple headers with identical
text. In the case below, all the headers are rendered a `<h1
id="header">Header</h1>`.
```markdown
# Header
# Header
# Header
# Header
```
This change is a simple but robust approach that uses an incrementing
counter and pre-checking to prevent header collision. (The above would
be rendered as `header`, `header-1`, `header-2`, and `header-3`.) In
more complex cases, it will append a new counter suffix (`-1`), like so:
```markdown
# Header
# Header 1
# Header
# Header
```
This will generate `header`, `header-1`, `header-1-1`, and `header-1-2`.
This code has two additional changes over the prior version:
1. Rather than reimplementing @shurcooL’s anchor sanitization code, I
have imported it as from
`github.com/shurcooL/go/github_flavored_markdown/sanitized_anchor_name`.
2. The markdown block parser is now only interested in *generating* a
sanitized anchor name, not with ensuring its uniqueness. That code
has been moved to the HTML renderer. This means that if the HTML
renderer is modified to identify all unique headers prior to
rendering, the hackish nature of the collision detection can be
eliminated.
2014-11-02 06:35:35 +08:00
|
|
|
// Track header IDs to prevent ID collision in a single generation.
|
|
|
|
headerIDs map[string]int
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
smartypants *smartypantsRenderer
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
const (
|
|
|
|
xhtmlClose = " />\n"
|
|
|
|
htmlClose = ">\n"
|
|
|
|
)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
// HtmlRenderer creates and configures an Html object, which
|
|
|
|
// satisfies the Renderer interface.
|
|
|
|
//
|
|
|
|
// flags is a set of HTML_* options ORed together.
|
|
|
|
// title is the title of the document, and css is a URL for the document's
|
|
|
|
// stylesheet.
|
|
|
|
// title and css are only used when HTML_COMPLETE_PAGE is selected.
|
2014-05-24 15:55:13 +08:00
|
|
|
func HtmlRenderer(flags int, title string, css string) Renderer {
|
|
|
|
return HtmlRendererWithParameters(flags, title, css, HtmlRendererParameters{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func HtmlRendererWithParameters(flags int, title string,
|
|
|
|
css string, renderParameters HtmlRendererParameters) Renderer {
|
2011-05-29 11:17:53 +08:00
|
|
|
// configure the rendering engine
|
2011-05-31 11:44:52 +08:00
|
|
|
closeTag := htmlClose
|
2011-05-29 11:17:53 +08:00
|
|
|
if flags&HTML_USE_XHTML != 0 {
|
2011-05-31 11:44:52 +08:00
|
|
|
closeTag = xhtmlClose
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2014-05-25 02:29:39 +08:00
|
|
|
if renderParameters.FootnoteReturnLinkContents == "" {
|
|
|
|
renderParameters.FootnoteReturnLinkContents = `<sup>[return]</sup>`
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
return &Html{
|
2014-05-24 15:55:13 +08:00
|
|
|
flags: flags,
|
|
|
|
closeTag: closeTag,
|
|
|
|
title: title,
|
|
|
|
css: css,
|
|
|
|
parameters: renderParameters,
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-30 00:08:56 +08:00
|
|
|
headerCount: 0,
|
|
|
|
currentLevel: 0,
|
2011-06-30 00:36:56 +08:00
|
|
|
toc: new(bytes.Buffer),
|
2011-05-29 11:17:53 +08:00
|
|
|
|
Prevent generated header collisions, less naively.
> This is a rework of an earlier version of this code.
The automatic header ID generation code submitted in #125 has a subtle
bug where it will use the same ID for multiple headers with identical
text. In the case below, all the headers are rendered a `<h1
id="header">Header</h1>`.
```markdown
# Header
# Header
# Header
# Header
```
This change is a simple but robust approach that uses an incrementing
counter and pre-checking to prevent header collision. (The above would
be rendered as `header`, `header-1`, `header-2`, and `header-3`.) In
more complex cases, it will append a new counter suffix (`-1`), like so:
```markdown
# Header
# Header 1
# Header
# Header
```
This will generate `header`, `header-1`, `header-1-1`, and `header-1-2`.
This code has two additional changes over the prior version:
1. Rather than reimplementing @shurcooL’s anchor sanitization code, I
have imported it as from
`github.com/shurcooL/go/github_flavored_markdown/sanitized_anchor_name`.
2. The markdown block parser is now only interested in *generating* a
sanitized anchor name, not with ensuring its uniqueness. That code
has been moved to the HTML renderer. This means that if the HTML
renderer is modified to identify all unique headers prior to
rendering, the hackish nature of the collision detection can be
eliminated.
2014-11-02 06:35:35 +08:00
|
|
|
headerIDs: make(map[string]int),
|
|
|
|
|
2011-07-08 01:56:45 +08:00
|
|
|
smartypants: smartypants(flags),
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-27 03:27:34 +08:00
|
|
|
// Using if statements is a bit faster than a switch statement. As the compiler
|
|
|
|
// improves, this should be unnecessary this is only worthwhile because
|
|
|
|
// attrEscape is the single largest CPU user in normal use.
|
|
|
|
// Also tried using map, but that gave a ~3x slowdown.
|
|
|
|
func escapeSingleChar(char byte) (string, bool) {
|
|
|
|
if char == '"' {
|
|
|
|
return """, true
|
|
|
|
}
|
|
|
|
if char == '&' {
|
|
|
|
return "&", true
|
|
|
|
}
|
|
|
|
if char == '<' {
|
|
|
|
return "<", true
|
|
|
|
}
|
|
|
|
if char == '>' {
|
|
|
|
return ">", true
|
|
|
|
}
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
func attrEscape(out *bytes.Buffer, src []byte) {
|
2011-06-25 09:11:06 +08:00
|
|
|
org := 0
|
|
|
|
for i, ch := range src {
|
2014-01-27 03:27:34 +08:00
|
|
|
if entity, ok := escapeSingleChar(ch); ok {
|
2011-06-25 09:11:06 +08:00
|
|
|
if i > org {
|
|
|
|
// copy all the normal characters since the last escape
|
|
|
|
out.Write(src[org:i])
|
|
|
|
}
|
|
|
|
org = i + 1
|
2014-01-27 03:27:34 +08:00
|
|
|
out.WriteString(entity)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-25 09:11:06 +08:00
|
|
|
if org < len(src) {
|
|
|
|
out.Write(src[org:])
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2014-01-27 03:39:38 +08:00
|
|
|
func entityEscapeWithSkip(out *bytes.Buffer, src []byte, skipRanges [][]int) {
|
|
|
|
end := 0
|
|
|
|
for _, rang := range skipRanges {
|
|
|
|
attrEscape(out, src[end:rang[0]])
|
|
|
|
out.Write(src[rang[0]:rang[1]])
|
|
|
|
end = rang[1]
|
|
|
|
}
|
|
|
|
attrEscape(out, src[end:])
|
|
|
|
}
|
|
|
|
|
2014-01-22 07:14:35 +08:00
|
|
|
func (options *Html) GetFlags() int {
|
|
|
|
return options.flags
|
|
|
|
}
|
|
|
|
|
2014-08-02 10:54:21 +08:00
|
|
|
func (options *Html) TitleBlock(out *bytes.Buffer, text []byte) {
|
|
|
|
text = bytes.TrimPrefix(text, []byte("% "))
|
|
|
|
text = bytes.Replace(text, []byte("\n% "), []byte("\n"), -1)
|
|
|
|
out.WriteString("<h1 class=\"title\">")
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("\n</h1>")
|
|
|
|
}
|
|
|
|
|
2014-04-06 03:42:58 +08:00
|
|
|
func (options *Html) Header(out *bytes.Buffer, text func() bool, level int, id string) {
|
2011-06-25 22:20:08 +08:00
|
|
|
marker := out.Len()
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
Prevent generated header collisions, less naively.
> This is a rework of an earlier version of this code.
The automatic header ID generation code submitted in #125 has a subtle
bug where it will use the same ID for multiple headers with identical
text. In the case below, all the headers are rendered a `<h1
id="header">Header</h1>`.
```markdown
# Header
# Header
# Header
# Header
```
This change is a simple but robust approach that uses an incrementing
counter and pre-checking to prevent header collision. (The above would
be rendered as `header`, `header-1`, `header-2`, and `header-3`.) In
more complex cases, it will append a new counter suffix (`-1`), like so:
```markdown
# Header
# Header 1
# Header
# Header
```
This will generate `header`, `header-1`, `header-1-1`, and `header-1-2`.
This code has two additional changes over the prior version:
1. Rather than reimplementing @shurcooL’s anchor sanitization code, I
have imported it as from
`github.com/shurcooL/go/github_flavored_markdown/sanitized_anchor_name`.
2. The markdown block parser is now only interested in *generating* a
sanitized anchor name, not with ensuring its uniqueness. That code
has been moved to the HTML renderer. This means that if the HTML
renderer is modified to identify all unique headers prior to
rendering, the hackish nature of the collision detection can be
eliminated.
2014-11-02 06:35:35 +08:00
|
|
|
if id == "" && options.flags&HTML_TOC != 0 {
|
|
|
|
id = fmt.Sprintf("toc_%d", options.headerCount)
|
|
|
|
}
|
|
|
|
|
2014-04-06 03:42:58 +08:00
|
|
|
if id != "" {
|
Allow configurable header ID prefix/suffixes.
This is specifically driven by the Hugo usecase where multiple documents
are often rendered into the same ultimate HTML page.
When a header ID is written to the output HTML format (either through
`HTML_TOC`, `EXTENSION_HEADER_IDS`, or `EXTENSION_AUTO_HEADER_IDS`), it
is possible that multiple documents will hvae identical header IDs. To
permit validation to pass, it is useful to have a per-document prefix or
suffix (in our case, an MD5 of the content filename, and we will be
using it as a suffix).
That is, two documents (`A` and `B`) that have the same header ID (`#
Reason {#reason}`), will end up having an actual header ID of the form
`#reason-DOCID` (e.g., `#reason-A`, `#reason-B`) with these HTML
parameters.
This is built on top of #126 (more intelligent collision detection for
`EXTENSION_AUTO_HEADER_IDS`).
2014-11-24 09:37:27 +08:00
|
|
|
id = options.ensureUniqueHeaderID(id)
|
|
|
|
|
|
|
|
if options.parameters.HeaderIDPrefix != "" {
|
|
|
|
id = options.parameters.HeaderIDPrefix + id
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.parameters.HeaderIDSuffix != "" {
|
|
|
|
id = id + options.parameters.HeaderIDSuffix
|
|
|
|
}
|
|
|
|
|
|
|
|
out.WriteString(fmt.Sprintf("<h%d id=\"%s\">", level, id))
|
2011-05-29 11:17:53 +08:00
|
|
|
} else {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString(fmt.Sprintf("<h%d>", level))
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 00:36:56 +08:00
|
|
|
tocMarker := out.Len()
|
2011-06-25 22:20:08 +08:00
|
|
|
if !text() {
|
|
|
|
out.Truncate(marker)
|
|
|
|
return
|
|
|
|
}
|
2011-06-30 00:08:56 +08:00
|
|
|
|
|
|
|
// are we building a table of contents?
|
|
|
|
if options.flags&HTML_TOC != 0 {
|
2014-10-28 04:49:28 +08:00
|
|
|
options.TocHeaderWithAnchor(out.Bytes()[tocMarker:], level, id)
|
2011-06-30 00:08:56 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString(fmt.Sprintf("</h%d>\n", level))
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) BlockHtml(out *bytes.Buffer, text []byte) {
|
2011-06-29 09:46:35 +08:00
|
|
|
if options.flags&HTML_SKIP_HTML != 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2014-01-22 07:14:35 +08:00
|
|
|
out.Write(text)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteByte('\n')
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) HRule(out *bytes.Buffer) {
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<hr")
|
2011-05-31 11:44:52 +08:00
|
|
|
out.WriteString(options.closeTag)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) BlockCode(out *bytes.Buffer, text []byte, lang string) {
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
// parse out the language names/classes
|
|
|
|
count := 0
|
|
|
|
for _, elt := range strings.Fields(lang) {
|
|
|
|
if elt[0] == '.' {
|
|
|
|
elt = elt[1:]
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-30 05:38:35 +08:00
|
|
|
if len(elt) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if count == 0 {
|
2014-08-28 11:26:20 +08:00
|
|
|
out.WriteString("<pre><code class=\"language-")
|
2011-06-30 05:38:35 +08:00
|
|
|
} else {
|
|
|
|
out.WriteByte(' ')
|
|
|
|
}
|
|
|
|
attrEscape(out, []byte(elt))
|
|
|
|
count++
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
if count == 0 {
|
|
|
|
out.WriteString("<pre><code>")
|
|
|
|
} else {
|
|
|
|
out.WriteString("\">")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
attrEscape(out, text)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</code></pre>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) BlockQuote(out *bytes.Buffer, text []byte) {
|
2011-07-02 01:19:42 +08:00
|
|
|
doubleSpace(out)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<blockquote>\n")
|
|
|
|
out.Write(text)
|
2011-07-02 01:19:42 +08:00
|
|
|
out.WriteString("</blockquote>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) Table(out *bytes.Buffer, header []byte, body []byte, columnData []int) {
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
|
|
|
out.WriteString("<table>\n<thead>\n")
|
2011-05-31 01:06:20 +08:00
|
|
|
out.Write(header)
|
2011-07-02 04:13:26 +08:00
|
|
|
out.WriteString("</thead>\n\n<tbody>\n")
|
2011-05-31 01:06:20 +08:00
|
|
|
out.Write(body)
|
2011-07-02 04:13:26 +08:00
|
|
|
out.WriteString("</tbody>\n</table>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) TableRow(out *bytes.Buffer, text []byte) {
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<tr>\n")
|
|
|
|
out.Write(text)
|
2011-07-02 04:13:26 +08:00
|
|
|
out.WriteString("\n</tr>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2013-10-16 18:36:33 +08:00
|
|
|
func (options *Html) TableHeaderCell(out *bytes.Buffer, text []byte, align int) {
|
|
|
|
doubleSpace(out)
|
|
|
|
switch align {
|
|
|
|
case TABLE_ALIGNMENT_LEFT:
|
|
|
|
out.WriteString("<th align=\"left\">")
|
|
|
|
case TABLE_ALIGNMENT_RIGHT:
|
|
|
|
out.WriteString("<th align=\"right\">")
|
|
|
|
case TABLE_ALIGNMENT_CENTER:
|
|
|
|
out.WriteString("<th align=\"center\">")
|
|
|
|
default:
|
|
|
|
out.WriteString("<th>")
|
|
|
|
}
|
|
|
|
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</th>")
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) TableCell(out *bytes.Buffer, text []byte, align int) {
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-29 11:17:53 +08:00
|
|
|
switch align {
|
|
|
|
case TABLE_ALIGNMENT_LEFT:
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<td align=\"left\">")
|
2011-05-29 11:17:53 +08:00
|
|
|
case TABLE_ALIGNMENT_RIGHT:
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<td align=\"right\">")
|
2011-05-29 11:17:53 +08:00
|
|
|
case TABLE_ALIGNMENT_CENTER:
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<td align=\"center\">")
|
2011-05-29 11:17:53 +08:00
|
|
|
default:
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<td>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</td>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2013-06-26 23:57:51 +08:00
|
|
|
func (options *Html) Footnotes(out *bytes.Buffer, text func() bool) {
|
2013-06-25 09:18:47 +08:00
|
|
|
out.WriteString("<div class=\"footnotes\">\n")
|
|
|
|
options.HRule(out)
|
2013-06-26 23:57:51 +08:00
|
|
|
options.List(out, text, LIST_TYPE_ORDERED)
|
2013-06-25 09:18:47 +08:00
|
|
|
out.WriteString("</div>\n")
|
|
|
|
}
|
|
|
|
|
2013-06-26 23:57:51 +08:00
|
|
|
func (options *Html) FootnoteItem(out *bytes.Buffer, name, text []byte, flags int) {
|
|
|
|
if flags&LIST_ITEM_CONTAINS_BLOCK != 0 || flags&LIST_ITEM_BEGINNING_OF_LIST != 0 {
|
|
|
|
doubleSpace(out)
|
|
|
|
}
|
2014-05-25 02:29:39 +08:00
|
|
|
slug := slugify(name)
|
2014-05-24 15:55:13 +08:00
|
|
|
out.WriteString(`<li id="`)
|
|
|
|
out.WriteString(`fn:`)
|
2014-05-25 03:28:37 +08:00
|
|
|
out.WriteString(options.parameters.FootnoteAnchorPrefix)
|
2014-05-25 02:29:39 +08:00
|
|
|
out.Write(slug)
|
2013-06-26 23:57:51 +08:00
|
|
|
out.WriteString(`">`)
|
|
|
|
out.Write(text)
|
2014-05-25 02:29:39 +08:00
|
|
|
if options.flags&HTML_FOOTNOTE_RETURN_LINKS != 0 {
|
|
|
|
out.WriteString(` <a class="footnote-return" href="#`)
|
|
|
|
out.WriteString(`fnref:`)
|
2014-05-25 03:28:37 +08:00
|
|
|
out.WriteString(options.parameters.FootnoteAnchorPrefix)
|
2014-05-25 02:29:39 +08:00
|
|
|
out.Write(slug)
|
|
|
|
out.WriteString(`">`)
|
|
|
|
out.WriteString(options.parameters.FootnoteReturnLinkContents)
|
|
|
|
out.WriteString(`</a>`)
|
|
|
|
}
|
2013-06-26 23:57:51 +08:00
|
|
|
out.WriteString("</li>\n")
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) List(out *bytes.Buffer, text func() bool, flags int) {
|
2011-06-26 05:02:46 +08:00
|
|
|
marker := out.Len()
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-06-26 05:02:46 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
if flags&LIST_TYPE_ORDERED != 0 {
|
2011-07-02 01:19:42 +08:00
|
|
|
out.WriteString("<ol>")
|
2011-05-29 11:17:53 +08:00
|
|
|
} else {
|
2011-07-02 01:19:42 +08:00
|
|
|
out.WriteString("<ul>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-26 05:02:46 +08:00
|
|
|
if !text() {
|
|
|
|
out.Truncate(marker)
|
|
|
|
return
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
if flags&LIST_TYPE_ORDERED != 0 {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</ol>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
} else {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</ul>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) ListItem(out *bytes.Buffer, text []byte, flags int) {
|
2011-07-02 01:19:42 +08:00
|
|
|
if flags&LIST_ITEM_CONTAINS_BLOCK != 0 || flags&LIST_ITEM_BEGINNING_OF_LIST != 0 {
|
|
|
|
doubleSpace(out)
|
|
|
|
}
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<li>")
|
2011-06-30 05:38:35 +08:00
|
|
|
out.Write(text)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</li>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) Paragraph(out *bytes.Buffer, text func() bool) {
|
2011-06-27 07:21:11 +08:00
|
|
|
marker := out.Len()
|
2011-06-30 05:38:35 +08:00
|
|
|
doubleSpace(out)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<p>")
|
2011-06-27 07:21:11 +08:00
|
|
|
if !text() {
|
|
|
|
out.Truncate(marker)
|
|
|
|
return
|
|
|
|
}
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</p>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) AutoLink(out *bytes.Buffer, link []byte, kind int) {
|
2014-01-27 03:39:38 +08:00
|
|
|
skipRanges := htmlEntity.FindAllIndex(link, -1)
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SAFELINK != 0 && !isSafeLink(link) && kind != LINK_TYPE_EMAIL {
|
2011-06-30 05:38:35 +08:00
|
|
|
// mark it but don't link it if it is not a safe link: no smartypants
|
|
|
|
out.WriteString("<tt>")
|
2014-01-27 03:39:38 +08:00
|
|
|
entityEscapeWithSkip(out, link, skipRanges)
|
2011-06-30 05:38:35 +08:00
|
|
|
out.WriteString("</tt>")
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<a href=\"")
|
2011-05-29 11:17:53 +08:00
|
|
|
if kind == LINK_TYPE_EMAIL {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("mailto:")
|
2014-05-18 14:28:15 +08:00
|
|
|
} else {
|
|
|
|
options.maybeWriteAbsolutePrefix(out, link)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2014-05-18 14:28:15 +08:00
|
|
|
|
2014-01-27 03:39:38 +08:00
|
|
|
entityEscapeWithSkip(out, link, skipRanges)
|
2014-03-21 10:52:46 +08:00
|
|
|
|
2015-03-15 07:46:32 +08:00
|
|
|
var relAttrs []string
|
2014-03-21 11:14:58 +08:00
|
|
|
if options.flags&HTML_NOFOLLOW_LINKS != 0 && !isRelativeLink(link) {
|
2015-03-15 07:46:32 +08:00
|
|
|
relAttrs = append(relAttrs, "nofollow")
|
2014-03-21 10:52:46 +08:00
|
|
|
}
|
2015-03-15 07:46:32 +08:00
|
|
|
if options.flags&HTML_NOREFERRER_LINKS != 0 && !isRelativeLink(link) {
|
|
|
|
relAttrs = append(relAttrs, "noreferrer")
|
|
|
|
}
|
|
|
|
if len(relAttrs) > 0 {
|
|
|
|
out.WriteString(fmt.Sprintf("\" rel=\"%s", strings.Join(relAttrs, " ")))
|
|
|
|
}
|
|
|
|
|
2014-03-21 10:52:46 +08:00
|
|
|
// blank target only add to external link
|
|
|
|
if options.flags&HTML_HREF_TARGET_BLANK != 0 && !isRelativeLink(link) {
|
|
|
|
out.WriteString("\" target=\"_blank")
|
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("\">")
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
// Pretty print: if we get an email address as
|
|
|
|
// an actual URI, e.g. `mailto:foo@bar.com`, we don't
|
|
|
|
// want to print the `mailto:` prefix
|
2011-06-01 01:49:49 +08:00
|
|
|
switch {
|
2011-05-31 05:36:31 +08:00
|
|
|
case bytes.HasPrefix(link, []byte("mailto://")):
|
2011-06-30 05:38:35 +08:00
|
|
|
attrEscape(out, link[len("mailto://"):])
|
2011-06-01 01:49:49 +08:00
|
|
|
case bytes.HasPrefix(link, []byte("mailto:")):
|
2011-06-30 05:38:35 +08:00
|
|
|
attrEscape(out, link[len("mailto:"):])
|
2011-05-31 05:36:31 +08:00
|
|
|
default:
|
2014-01-27 03:39:38 +08:00
|
|
|
entityEscapeWithSkip(out, link, skipRanges)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</a>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) CodeSpan(out *bytes.Buffer, text []byte) {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<code>")
|
|
|
|
attrEscape(out, text)
|
|
|
|
out.WriteString("</code>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) DoubleEmphasis(out *bytes.Buffer, text []byte) {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<strong>")
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</strong>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) Emphasis(out *bytes.Buffer, text []byte) {
|
2011-05-29 11:17:53 +08:00
|
|
|
if len(text) == 0 {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<em>")
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</em>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2014-05-18 14:28:15 +08:00
|
|
|
func (options *Html) maybeWriteAbsolutePrefix(out *bytes.Buffer, link []byte) {
|
2015-02-20 17:06:55 +08:00
|
|
|
if options.parameters.AbsolutePrefix != "" && isRelativeLink(link) && link[0] != '.' {
|
2014-05-24 15:55:13 +08:00
|
|
|
out.WriteString(options.parameters.AbsolutePrefix)
|
2014-05-18 14:28:15 +08:00
|
|
|
if link[0] != '/' {
|
|
|
|
out.WriteByte('/')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
|
2011-06-29 09:46:35 +08:00
|
|
|
if options.flags&HTML_SKIP_IMAGES != 0 {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-06-29 09:46:35 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<img src=\"")
|
2014-05-18 14:28:15 +08:00
|
|
|
options.maybeWriteAbsolutePrefix(out, link)
|
2011-05-31 01:06:20 +08:00
|
|
|
attrEscape(out, link)
|
|
|
|
out.WriteString("\" alt=\"")
|
2011-05-29 11:17:53 +08:00
|
|
|
if len(alt) > 0 {
|
2011-05-31 01:06:20 +08:00
|
|
|
attrEscape(out, alt)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
if len(title) > 0 {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("\" title=\"")
|
|
|
|
attrEscape(out, title)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteByte('"')
|
2011-05-31 11:44:52 +08:00
|
|
|
out.WriteString(options.closeTag)
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) LineBreak(out *bytes.Buffer) {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<br")
|
2011-05-31 11:44:52 +08:00
|
|
|
out.WriteString(options.closeTag)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
|
2011-06-29 09:46:35 +08:00
|
|
|
if options.flags&HTML_SKIP_LINKS != 0 {
|
2011-06-30 05:38:35 +08:00
|
|
|
// write the link text out but don't link it, just mark it with typewriter font
|
|
|
|
out.WriteString("<tt>")
|
|
|
|
attrEscape(out, content)
|
|
|
|
out.WriteString("</tt>")
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-06-29 09:46:35 +08:00
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SAFELINK != 0 && !isSafeLink(link) {
|
2011-06-30 05:38:35 +08:00
|
|
|
// write the link text out but don't link it, just mark it with typewriter font
|
|
|
|
out.WriteString("<tt>")
|
|
|
|
attrEscape(out, content)
|
|
|
|
out.WriteString("</tt>")
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<a href=\"")
|
2014-05-18 14:28:15 +08:00
|
|
|
options.maybeWriteAbsolutePrefix(out, link)
|
2011-06-25 01:50:03 +08:00
|
|
|
attrEscape(out, link)
|
2011-05-29 11:17:53 +08:00
|
|
|
if len(title) > 0 {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("\" title=\"")
|
|
|
|
attrEscape(out, title)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2015-03-15 07:46:32 +08:00
|
|
|
var relAttrs []string
|
2014-03-21 11:14:58 +08:00
|
|
|
if options.flags&HTML_NOFOLLOW_LINKS != 0 && !isRelativeLink(link) {
|
2015-03-15 07:46:32 +08:00
|
|
|
relAttrs = append(relAttrs, "nofollow")
|
2014-02-25 22:21:57 +08:00
|
|
|
}
|
2015-03-15 07:46:32 +08:00
|
|
|
if options.flags&HTML_NOREFERRER_LINKS != 0 && !isRelativeLink(link) {
|
|
|
|
relAttrs = append(relAttrs, "noreferrer")
|
|
|
|
}
|
|
|
|
if len(relAttrs) > 0 {
|
|
|
|
out.WriteString(fmt.Sprintf("\" rel=\"%s", strings.Join(relAttrs, " ")))
|
|
|
|
}
|
|
|
|
|
2014-03-21 10:52:46 +08:00
|
|
|
// blank target only add to external link
|
|
|
|
if options.flags&HTML_HREF_TARGET_BLANK != 0 && !isRelativeLink(link) {
|
|
|
|
out.WriteString("\" target=\"_blank")
|
|
|
|
}
|
|
|
|
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("\">")
|
2011-06-25 01:50:03 +08:00
|
|
|
out.Write(content)
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("</a>")
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) RawHtmlTag(out *bytes.Buffer, text []byte) {
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SKIP_HTML != 0 {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SKIP_STYLE != 0 && isHtmlTag(text, "style") {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SKIP_LINKS != 0 && isHtmlTag(text, "a") {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-30 07:00:31 +08:00
|
|
|
if options.flags&HTML_SKIP_IMAGES != 0 && isHtmlTag(text, "img") {
|
2011-06-30 03:00:54 +08:00
|
|
|
return
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-05-31 01:06:20 +08:00
|
|
|
out.Write(text)
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) TripleEmphasis(out *bytes.Buffer, text []byte) {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<strong><em>")
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</em></strong>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:00:54 +08:00
|
|
|
func (options *Html) StrikeThrough(out *bytes.Buffer, text []byte) {
|
2011-05-31 01:06:20 +08:00
|
|
|
out.WriteString("<del>")
|
|
|
|
out.Write(text)
|
|
|
|
out.WriteString("</del>")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2013-06-25 09:18:47 +08:00
|
|
|
func (options *Html) FootnoteRef(out *bytes.Buffer, ref []byte, id int) {
|
|
|
|
slug := slugify(ref)
|
2014-05-24 15:55:13 +08:00
|
|
|
out.WriteString(`<sup class="footnote-ref" id="`)
|
|
|
|
out.WriteString(`fnref:`)
|
2014-05-25 03:28:37 +08:00
|
|
|
out.WriteString(options.parameters.FootnoteAnchorPrefix)
|
2013-06-25 09:18:47 +08:00
|
|
|
out.Write(slug)
|
2014-05-24 15:55:13 +08:00
|
|
|
out.WriteString(`"><a rel="footnote" href="#`)
|
|
|
|
out.WriteString(`fn:`)
|
2014-05-25 03:28:37 +08:00
|
|
|
out.WriteString(options.parameters.FootnoteAnchorPrefix)
|
2013-06-25 09:18:47 +08:00
|
|
|
out.Write(slug)
|
|
|
|
out.WriteString(`">`)
|
|
|
|
out.WriteString(strconv.Itoa(id))
|
|
|
|
out.WriteString(`</a></sup>`)
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) Entity(out *bytes.Buffer, entity []byte) {
|
2011-06-30 00:08:56 +08:00
|
|
|
out.Write(entity)
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) NormalText(out *bytes.Buffer, text []byte) {
|
2011-06-29 09:46:35 +08:00
|
|
|
if options.flags&HTML_USE_SMARTYPANTS != 0 {
|
2011-06-30 01:13:17 +08:00
|
|
|
options.Smartypants(out, text)
|
2011-06-29 09:46:35 +08:00
|
|
|
} else {
|
|
|
|
attrEscape(out, text)
|
|
|
|
}
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) Smartypants(out *bytes.Buffer, text []byte) {
|
|
|
|
smrt := smartypantsData{false, false}
|
|
|
|
|
|
|
|
// first do normal entity escaping
|
|
|
|
var escaped bytes.Buffer
|
|
|
|
attrEscape(&escaped, text)
|
|
|
|
text = escaped.Bytes()
|
|
|
|
|
|
|
|
mark := 0
|
|
|
|
for i := 0; i < len(text); i++ {
|
|
|
|
if action := options.smartypants[text[i]]; action != nil {
|
|
|
|
if i > mark {
|
|
|
|
out.Write(text[mark:i])
|
|
|
|
}
|
|
|
|
|
|
|
|
previousChar := byte(0)
|
|
|
|
if i > 0 {
|
|
|
|
previousChar = text[i-1]
|
|
|
|
}
|
|
|
|
i += action(out, &smrt, previousChar, text[i:])
|
|
|
|
mark = i + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if mark < len(text) {
|
|
|
|
out.Write(text[mark:])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (options *Html) DocumentHeader(out *bytes.Buffer) {
|
2011-06-30 00:08:56 +08:00
|
|
|
if options.flags&HTML_COMPLETE_PAGE == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ending := ""
|
|
|
|
if options.flags&HTML_USE_XHTML != 0 {
|
|
|
|
out.WriteString("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" ")
|
|
|
|
out.WriteString("\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n")
|
|
|
|
out.WriteString("<html xmlns=\"http://www.w3.org/1999/xhtml\">\n")
|
|
|
|
ending = " /"
|
|
|
|
} else {
|
2012-10-22 12:23:44 +08:00
|
|
|
out.WriteString("<!DOCTYPE html>\n")
|
2011-06-30 00:08:56 +08:00
|
|
|
out.WriteString("<html>\n")
|
|
|
|
}
|
|
|
|
out.WriteString("<head>\n")
|
|
|
|
out.WriteString(" <title>")
|
2011-06-30 01:13:17 +08:00
|
|
|
options.NormalText(out, []byte(options.title))
|
2011-06-30 00:08:56 +08:00
|
|
|
out.WriteString("</title>\n")
|
|
|
|
out.WriteString(" <meta name=\"GENERATOR\" content=\"Blackfriday Markdown Processor v")
|
|
|
|
out.WriteString(VERSION)
|
|
|
|
out.WriteString("\"")
|
|
|
|
out.WriteString(ending)
|
|
|
|
out.WriteString(">\n")
|
2012-10-22 12:23:44 +08:00
|
|
|
out.WriteString(" <meta charset=\"utf-8\"")
|
2011-06-30 00:08:56 +08:00
|
|
|
out.WriteString(ending)
|
|
|
|
out.WriteString(">\n")
|
|
|
|
if options.css != "" {
|
|
|
|
out.WriteString(" <link rel=\"stylesheet\" type=\"text/css\" href=\"")
|
|
|
|
attrEscape(out, []byte(options.css))
|
|
|
|
out.WriteString("\"")
|
|
|
|
out.WriteString(ending)
|
|
|
|
out.WriteString(">\n")
|
|
|
|
}
|
|
|
|
out.WriteString("</head>\n")
|
|
|
|
out.WriteString("<body>\n")
|
2011-06-30 00:36:56 +08:00
|
|
|
|
|
|
|
options.tocMarker = out.Len()
|
2011-06-30 00:08:56 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) DocumentFooter(out *bytes.Buffer) {
|
2011-06-30 00:36:56 +08:00
|
|
|
// finalize and insert the table of contents
|
|
|
|
if options.flags&HTML_TOC != 0 {
|
2011-06-30 01:13:17 +08:00
|
|
|
options.TocFinalize()
|
2011-06-30 00:36:56 +08:00
|
|
|
|
|
|
|
// now we have to insert the table of contents into the document
|
|
|
|
var temp bytes.Buffer
|
|
|
|
|
|
|
|
// start by making a copy of everything after the document header
|
|
|
|
temp.Write(out.Bytes()[options.tocMarker:])
|
|
|
|
|
|
|
|
// now clear the copied material from the main output buffer
|
|
|
|
out.Truncate(options.tocMarker)
|
|
|
|
|
2011-06-30 03:24:15 +08:00
|
|
|
// corner case spacing issue
|
|
|
|
if options.flags&HTML_COMPLETE_PAGE != 0 {
|
|
|
|
out.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
2011-06-30 00:36:56 +08:00
|
|
|
// insert the table of contents
|
2012-10-22 12:23:44 +08:00
|
|
|
out.WriteString("<nav>\n")
|
2011-06-30 00:36:56 +08:00
|
|
|
out.Write(options.toc.Bytes())
|
2012-10-22 12:23:44 +08:00
|
|
|
out.WriteString("</nav>\n")
|
2011-06-30 00:36:56 +08:00
|
|
|
|
2011-06-30 03:24:15 +08:00
|
|
|
// corner case spacing issue
|
|
|
|
if options.flags&HTML_COMPLETE_PAGE == 0 && options.flags&HTML_OMIT_CONTENTS == 0 {
|
|
|
|
out.WriteByte('\n')
|
|
|
|
}
|
|
|
|
|
2011-06-30 00:36:56 +08:00
|
|
|
// write out everything that came after it
|
|
|
|
if options.flags&HTML_OMIT_CONTENTS == 0 {
|
|
|
|
out.Write(temp.Bytes())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if options.flags&HTML_COMPLETE_PAGE != 0 {
|
|
|
|
out.WriteString("\n</body>\n")
|
|
|
|
out.WriteString("</html>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-30 00:08:56 +08:00
|
|
|
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2014-10-28 04:49:28 +08:00
|
|
|
func (options *Html) TocHeaderWithAnchor(text []byte, level int, anchor string) {
|
2011-06-30 00:36:56 +08:00
|
|
|
for level > options.currentLevel {
|
|
|
|
switch {
|
|
|
|
case bytes.HasSuffix(options.toc.Bytes(), []byte("</li>\n")):
|
2011-06-30 03:24:15 +08:00
|
|
|
// this sublist can nest underneath a header
|
2011-06-30 00:36:56 +08:00
|
|
|
size := options.toc.Len()
|
|
|
|
options.toc.Truncate(size - len("</li>\n"))
|
|
|
|
|
|
|
|
case options.currentLevel > 0:
|
|
|
|
options.toc.WriteString("<li>")
|
|
|
|
}
|
2011-06-30 03:24:15 +08:00
|
|
|
if options.toc.Len() > 0 {
|
|
|
|
options.toc.WriteByte('\n')
|
|
|
|
}
|
|
|
|
options.toc.WriteString("<ul>\n")
|
2011-06-30 00:36:56 +08:00
|
|
|
options.currentLevel++
|
|
|
|
}
|
|
|
|
|
|
|
|
for level < options.currentLevel {
|
|
|
|
options.toc.WriteString("</ul>")
|
|
|
|
if options.currentLevel > 1 {
|
|
|
|
options.toc.WriteString("</li>\n")
|
|
|
|
}
|
|
|
|
options.currentLevel--
|
|
|
|
}
|
|
|
|
|
2014-10-28 04:49:28 +08:00
|
|
|
options.toc.WriteString("<li><a href=\"#")
|
|
|
|
if anchor != "" {
|
|
|
|
options.toc.WriteString(anchor)
|
|
|
|
} else {
|
|
|
|
options.toc.WriteString("toc_")
|
|
|
|
options.toc.WriteString(strconv.Itoa(options.headerCount))
|
|
|
|
}
|
2011-06-30 00:36:56 +08:00
|
|
|
options.toc.WriteString("\">")
|
|
|
|
options.headerCount++
|
|
|
|
|
|
|
|
options.toc.Write(text)
|
|
|
|
|
|
|
|
options.toc.WriteString("</a></li>\n")
|
|
|
|
}
|
|
|
|
|
2014-10-28 04:49:28 +08:00
|
|
|
func (options *Html) TocHeader(text []byte, level int) {
|
|
|
|
options.TocHeaderWithAnchor(text, level, "")
|
|
|
|
}
|
|
|
|
|
2011-06-30 01:13:17 +08:00
|
|
|
func (options *Html) TocFinalize() {
|
2011-06-30 00:08:56 +08:00
|
|
|
for options.currentLevel > 1 {
|
2011-06-30 00:36:56 +08:00
|
|
|
options.toc.WriteString("</ul></li>\n")
|
2011-06-30 00:08:56 +08:00
|
|
|
options.currentLevel--
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 00:08:56 +08:00
|
|
|
if options.currentLevel > 0 {
|
2011-06-30 00:36:56 +08:00
|
|
|
options.toc.WriteString("</ul>\n")
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-30 07:00:31 +08:00
|
|
|
func isHtmlTag(tag []byte, tagname string) bool {
|
2013-04-18 08:15:47 +08:00
|
|
|
found, _ := findHtmlTagPos(tag, tagname)
|
|
|
|
return found
|
|
|
|
}
|
|
|
|
|
2014-01-22 06:45:43 +08:00
|
|
|
// Look for a character, but ignore it when it's in any kind of quotes, it
|
|
|
|
// might be JavaScript
|
|
|
|
func skipUntilCharIgnoreQuotes(html []byte, start int, char byte) int {
|
|
|
|
inSingleQuote := false
|
|
|
|
inDoubleQuote := false
|
|
|
|
inGraveQuote := false
|
|
|
|
i := start
|
|
|
|
for i < len(html) {
|
|
|
|
switch {
|
|
|
|
case html[i] == char && !inSingleQuote && !inDoubleQuote && !inGraveQuote:
|
|
|
|
return i
|
|
|
|
case html[i] == '\'':
|
|
|
|
inSingleQuote = !inSingleQuote
|
|
|
|
case html[i] == '"':
|
|
|
|
inDoubleQuote = !inDoubleQuote
|
|
|
|
case html[i] == '`':
|
|
|
|
inGraveQuote = !inGraveQuote
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return start
|
|
|
|
}
|
|
|
|
|
2013-04-18 08:15:47 +08:00
|
|
|
func findHtmlTagPos(tag []byte, tagname string) (bool, int) {
|
2011-05-29 11:17:53 +08:00
|
|
|
i := 0
|
|
|
|
if i < len(tag) && tag[0] != '<' {
|
2013-04-18 08:15:47 +08:00
|
|
|
return false, -1
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
i++
|
2013-04-14 03:26:29 +08:00
|
|
|
i = skipSpace(tag, i)
|
2011-05-29 11:17:53 +08:00
|
|
|
|
|
|
|
if i < len(tag) && tag[i] == '/' {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
2013-04-14 03:26:29 +08:00
|
|
|
i = skipSpace(tag, i)
|
2013-04-14 03:21:47 +08:00
|
|
|
j := 0
|
2011-06-29 06:02:12 +08:00
|
|
|
for ; i < len(tag); i, j = i+1, j+1 {
|
|
|
|
if j >= len(tagname) {
|
2011-05-29 11:17:53 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2013-04-14 03:34:37 +08:00
|
|
|
if strings.ToLower(string(tag[i]))[0] != tagname[j] {
|
2013-04-18 08:15:47 +08:00
|
|
|
return false, -1
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(tag) {
|
2013-04-18 08:15:47 +08:00
|
|
|
return false, -1
|
|
|
|
}
|
|
|
|
|
2014-01-22 06:45:43 +08:00
|
|
|
rightAngle := skipUntilCharIgnoreQuotes(tag, i, '>')
|
|
|
|
if rightAngle > i {
|
|
|
|
return true, rightAngle
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
|
|
|
|
2013-04-18 08:15:47 +08:00
|
|
|
return false, -1
|
2011-05-29 11:17:53 +08:00
|
|
|
}
|
2011-06-30 05:38:35 +08:00
|
|
|
|
2014-01-22 07:14:35 +08:00
|
|
|
func skipUntilChar(text []byte, start int, char byte) int {
|
|
|
|
i := start
|
|
|
|
for i < len(text) && text[i] != char {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2013-04-14 03:26:29 +08:00
|
|
|
func skipSpace(tag []byte, i int) int {
|
|
|
|
for i < len(tag) && isspace(tag[i]) {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2015-04-08 02:59:42 +08:00
|
|
|
func skipChar(data []byte, start int, char byte) int {
|
|
|
|
i := start
|
|
|
|
for i < len(data) && data[i] == char {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2011-06-30 05:38:35 +08:00
|
|
|
func doubleSpace(out *bytes.Buffer) {
|
|
|
|
if out.Len() > 0 {
|
|
|
|
out.WriteByte('\n')
|
|
|
|
}
|
|
|
|
}
|
2014-03-21 10:52:46 +08:00
|
|
|
|
|
|
|
func isRelativeLink(link []byte) (yes bool) {
|
|
|
|
// a tag begin with '#'
|
|
|
|
if link[0] == '#' {
|
2015-04-11 23:06:30 +08:00
|
|
|
return true
|
2014-03-21 10:52:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// link begin with '/' but not '//', the second maybe a protocol relative link
|
|
|
|
if len(link) >= 2 && link[0] == '/' && link[1] != '/' {
|
2015-04-11 23:06:30 +08:00
|
|
|
return true
|
2014-03-21 10:52:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// only the root '/'
|
|
|
|
if len(link) == 1 && link[0] == '/' {
|
2015-04-11 23:06:30 +08:00
|
|
|
return true
|
2014-03-21 10:52:46 +08:00
|
|
|
}
|
2015-02-20 17:06:55 +08:00
|
|
|
|
|
|
|
// current directory : begin with "./"
|
2015-04-11 23:06:30 +08:00
|
|
|
if bytes.HasPrefix(link, []byte("./")) {
|
|
|
|
return true
|
2015-02-20 17:06:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// parent directory : begin with "../"
|
2015-04-11 23:06:30 +08:00
|
|
|
if bytes.HasPrefix(link, []byte("../")) {
|
|
|
|
return true
|
2015-02-20 17:06:55 +08:00
|
|
|
}
|
|
|
|
|
2015-04-11 23:06:30 +08:00
|
|
|
return false
|
2014-03-21 10:52:46 +08:00
|
|
|
}
|
Prevent generated header collisions, less naively.
> This is a rework of an earlier version of this code.
The automatic header ID generation code submitted in #125 has a subtle
bug where it will use the same ID for multiple headers with identical
text. In the case below, all the headers are rendered a `<h1
id="header">Header</h1>`.
```markdown
# Header
# Header
# Header
# Header
```
This change is a simple but robust approach that uses an incrementing
counter and pre-checking to prevent header collision. (The above would
be rendered as `header`, `header-1`, `header-2`, and `header-3`.) In
more complex cases, it will append a new counter suffix (`-1`), like so:
```markdown
# Header
# Header 1
# Header
# Header
```
This will generate `header`, `header-1`, `header-1-1`, and `header-1-2`.
This code has two additional changes over the prior version:
1. Rather than reimplementing @shurcooL’s anchor sanitization code, I
have imported it as from
`github.com/shurcooL/go/github_flavored_markdown/sanitized_anchor_name`.
2. The markdown block parser is now only interested in *generating* a
sanitized anchor name, not with ensuring its uniqueness. That code
has been moved to the HTML renderer. This means that if the HTML
renderer is modified to identify all unique headers prior to
rendering, the hackish nature of the collision detection can be
eliminated.
2014-11-02 06:35:35 +08:00
|
|
|
|
|
|
|
func (options *Html) ensureUniqueHeaderID(id string) string {
|
|
|
|
for count, found := options.headerIDs[id]; found; count, found = options.headerIDs[id] {
|
|
|
|
tmp := fmt.Sprintf("%s-%d", id, count+1)
|
|
|
|
|
|
|
|
if _, tmpFound := options.headerIDs[tmp]; !tmpFound {
|
|
|
|
options.headerIDs[id] = count + 1
|
|
|
|
id = tmp
|
|
|
|
} else {
|
|
|
|
id = id + "-1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, found := options.headerIDs[id]; !found {
|
|
|
|
options.headerIDs[id] = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return id
|
|
|
|
}
|