├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── block.go ├── block_test.go ├── doc.go ├── html.go ├── inline.go ├── inline_test.go ├── latex.go ├── markdown.go ├── markdown_test.go ├── ref_test.go ├── smartypants.go └── testdata ├── Amps and angle encoding.html ├── Amps and angle encoding.text ├── Auto links.html ├── Auto links.text ├── Backslash escapes.html ├── Backslash escapes.text ├── Blockquotes with code blocks.html ├── Blockquotes with code blocks.text ├── Code Blocks.html ├── Code Blocks.text ├── Code Spans.html ├── Code Spans.text ├── Hard-wrapped paragraphs with list-like lines no empty line before block.html ├── Hard-wrapped paragraphs with list-like lines no empty line before block.text ├── Hard-wrapped paragraphs with list-like lines.html ├── Hard-wrapped paragraphs with list-like lines.text ├── Horizontal rules.html ├── Horizontal rules.text ├── Inline HTML (Advanced).html ├── Inline HTML (Advanced).text ├── Inline HTML (Simple).html ├── Inline HTML (Simple).text ├── Inline HTML comments.html ├── Inline HTML comments.text ├── Links, inline style.html ├── Links, inline style.text ├── Links, reference style.html ├── Links, reference style.text ├── Links, shortcut references.html ├── Links, shortcut references.text ├── Literal quotes in titles.html ├── Literal quotes in titles.text ├── Markdown Documentation - Basics.html ├── Markdown Documentation - Basics.text ├── Markdown Documentation - Syntax.html ├── Markdown Documentation - Syntax.text ├── Nested blockquotes.html ├── Nested blockquotes.text ├── Ordered and unordered lists.html ├── Ordered and unordered lists.text ├── Strong and em together.html ├── Strong and em together.text ├── Tabs.html ├── Tabs.text ├── Tidyness.html └── Tidyness.text /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/README.md -------------------------------------------------------------------------------- /block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/block.go -------------------------------------------------------------------------------- /block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/block_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/doc.go -------------------------------------------------------------------------------- /html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/html.go -------------------------------------------------------------------------------- /inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/inline.go -------------------------------------------------------------------------------- /inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/inline_test.go -------------------------------------------------------------------------------- /latex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/latex.go -------------------------------------------------------------------------------- /markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/markdown.go -------------------------------------------------------------------------------- /markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/markdown_test.go -------------------------------------------------------------------------------- /ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/ref_test.go -------------------------------------------------------------------------------- /smartypants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/smartypants.go -------------------------------------------------------------------------------- /testdata/Amps and angle encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Amps and angle encoding.html -------------------------------------------------------------------------------- /testdata/Amps and angle encoding.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Amps and angle encoding.text -------------------------------------------------------------------------------- /testdata/Auto links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Auto links.html -------------------------------------------------------------------------------- /testdata/Auto links.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Auto links.text -------------------------------------------------------------------------------- /testdata/Backslash escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Backslash escapes.html -------------------------------------------------------------------------------- /testdata/Backslash escapes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Backslash escapes.text -------------------------------------------------------------------------------- /testdata/Blockquotes with code blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Blockquotes with code blocks.html -------------------------------------------------------------------------------- /testdata/Blockquotes with code blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Blockquotes with code blocks.text -------------------------------------------------------------------------------- /testdata/Code Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Code Blocks.html -------------------------------------------------------------------------------- /testdata/Code Blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Code Blocks.text -------------------------------------------------------------------------------- /testdata/Code Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Code Spans.html -------------------------------------------------------------------------------- /testdata/Code Spans.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Code Spans.text -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.html -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Hard-wrapped paragraphs with list-like lines no empty line before block.text -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Hard-wrapped paragraphs with list-like lines.html -------------------------------------------------------------------------------- /testdata/Hard-wrapped paragraphs with list-like lines.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Hard-wrapped paragraphs with list-like lines.text -------------------------------------------------------------------------------- /testdata/Horizontal rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Horizontal rules.html -------------------------------------------------------------------------------- /testdata/Horizontal rules.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Horizontal rules.text -------------------------------------------------------------------------------- /testdata/Inline HTML (Advanced).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML (Advanced).html -------------------------------------------------------------------------------- /testdata/Inline HTML (Advanced).text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML (Advanced).text -------------------------------------------------------------------------------- /testdata/Inline HTML (Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML (Simple).html -------------------------------------------------------------------------------- /testdata/Inline HTML (Simple).text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML (Simple).text -------------------------------------------------------------------------------- /testdata/Inline HTML comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML comments.html -------------------------------------------------------------------------------- /testdata/Inline HTML comments.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Inline HTML comments.text -------------------------------------------------------------------------------- /testdata/Links, inline style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, inline style.html -------------------------------------------------------------------------------- /testdata/Links, inline style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, inline style.text -------------------------------------------------------------------------------- /testdata/Links, reference style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, reference style.html -------------------------------------------------------------------------------- /testdata/Links, reference style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, reference style.text -------------------------------------------------------------------------------- /testdata/Links, shortcut references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, shortcut references.html -------------------------------------------------------------------------------- /testdata/Links, shortcut references.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Links, shortcut references.text -------------------------------------------------------------------------------- /testdata/Literal quotes in titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Literal quotes in titles.html -------------------------------------------------------------------------------- /testdata/Literal quotes in titles.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Literal quotes in titles.text -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Markdown Documentation - Basics.html -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Basics.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Markdown Documentation - Basics.text -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Markdown Documentation - Syntax.html -------------------------------------------------------------------------------- /testdata/Markdown Documentation - Syntax.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Markdown Documentation - Syntax.text -------------------------------------------------------------------------------- /testdata/Nested blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Nested blockquotes.html -------------------------------------------------------------------------------- /testdata/Nested blockquotes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Nested blockquotes.text -------------------------------------------------------------------------------- /testdata/Ordered and unordered lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Ordered and unordered lists.html -------------------------------------------------------------------------------- /testdata/Ordered and unordered lists.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Ordered and unordered lists.text -------------------------------------------------------------------------------- /testdata/Strong and em together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Strong and em together.html -------------------------------------------------------------------------------- /testdata/Strong and em together.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Strong and em together.text -------------------------------------------------------------------------------- /testdata/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Tabs.html -------------------------------------------------------------------------------- /testdata/Tabs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Tabs.text -------------------------------------------------------------------------------- /testdata/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Tidyness.html -------------------------------------------------------------------------------- /testdata/Tidyness.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Password/blackfriday/HEAD/testdata/Tidyness.text --------------------------------------------------------------------------------