feat(parser): comprehensive Markdown parser enhancement - Add nested list support (multi-level unordered/ordered, mixed nesting) - Add Setext headings (=== / ---) - Add indented code blocks (4-space indent) - Add HTML comment passthrough (<!-- -->) - Add entity reference protection (& ©) - Add ordered list start attribute - Add link title single-quote support - Add LaTeX math formulas ($inline$ / $$block$$) - Add footnote support ([^1] ref + [^1]: definition) - Add definition lists (term\n: definition) - Extend emoji map from 85 to 150+ common emojis - Fix backtick code block matching (CommonMark spec) - Fix italic regex character truncation (lookbehind assertions) - Fix superscript/subscript/strikethrough ambiguity - Fix blockquote prefix handling (>text without space) - Enhance safeUrl filtering (additional protocol checks) - Enhance slugify (Unicode NFKC normalization) perf(parser): single-pass inline scanning, render cache, pre-compiled regex - Replace 14-step chained regex with unified single-pass scanInline() - Add cachedRenderInline() with FIFO LRU eviction (300-entry cap) - Pre-compile 15+ static regex constants for block boundary detection - Skip redundant style='text-align:left' on default-aligned table cells style(parser): add CSS for footnotes, definition lists, math formulas, sup/sub test(parser): 44 new test cases covering all v0.1.4 syntax additions (469 total) chore: bump version 0.1.3 → 0.1.4 across all source files, docs, site pages
700 lines
21 KiB
JavaScript
700 lines
21 KiB
JavaScript
/**
|
|
* parser.js 单元测试
|
|
* 覆盖 Markdown 解析器的所有语法分支与安全特性
|
|
*/
|
|
|
|
import { parseMarkdown, safeUrl, slugify } from '../src/parser.js';
|
|
|
|
describe('parseMarkdown - 基础', () => {
|
|
test('空输入返回空字符串', () => {
|
|
expect(parseMarkdown('')).toBe('');
|
|
expect(parseMarkdown(null)).toBe('');
|
|
expect(parseMarkdown(undefined)).toBe('');
|
|
});
|
|
|
|
test('非字符串输入被转换为字符串', () => {
|
|
expect(parseMarkdown(123)).toBe('<p>123</p>');
|
|
});
|
|
|
|
test('Windows 换行符被规范化', () => {
|
|
const html = parseMarkdown('line1\r\nline2');
|
|
expect(html).toContain('line1');
|
|
expect(html).toContain('line2');
|
|
expect(html).not.toContain('\r');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 标题', () => {
|
|
test('h1 到 h6', () => {
|
|
expect(parseMarkdown('# T1')).toBe('<h1 id="t1">T1</h1>');
|
|
expect(parseMarkdown('## T2')).toBe('<h2 id="t2">T2</h2>');
|
|
expect(parseMarkdown('### T3')).toBe('<h3 id="t3">T3</h3>');
|
|
expect(parseMarkdown('#### T4')).toBe('<h4 id="t4">T4</h4>');
|
|
expect(parseMarkdown('##### T5')).toBe('<h5 id="t5">T5</h5>');
|
|
expect(parseMarkdown('###### T6')).toBe('<h6 id="t6">T6</h6>');
|
|
});
|
|
|
|
test('标题文本被内联渲染', () => {
|
|
const html = parseMarkdown('# Hello **world**');
|
|
expect(html).toContain('<strong>world</strong>');
|
|
});
|
|
|
|
test('标题生成锚点 id', () => {
|
|
expect(parseMarkdown('# Hello World')).toContain('id="hello-world"');
|
|
});
|
|
|
|
test('超过 6 个 # 不作为标题', () => {
|
|
const html = parseMarkdown('####### not heading');
|
|
expect(html).not.toContain('<h7');
|
|
expect(html).toContain('<p>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 段落', () => {
|
|
test('单行段落', () => {
|
|
expect(parseMarkdown('hello')).toBe('<p>hello</p>');
|
|
});
|
|
|
|
test('多行段落合并', () => {
|
|
const html = parseMarkdown('line1\nline2');
|
|
expect(html).toBe('<p>line1<br/>line2</p>');
|
|
});
|
|
|
|
test('空行分隔段落', () => {
|
|
const html = parseMarkdown('p1\n\np2');
|
|
expect(html).toBe('<p>p1</p>\n<p>p2</p>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 行内格式', () => {
|
|
test('粗体 **text**', () => {
|
|
expect(parseMarkdown('**bold**')).toBe('<p><strong>bold</strong></p>');
|
|
});
|
|
|
|
test('粗体 __text__', () => {
|
|
expect(parseMarkdown('__bold__')).toBe('<p><strong>bold</strong></p>');
|
|
});
|
|
|
|
test('斜体 *text*', () => {
|
|
expect(parseMarkdown('a *italic* b')).toBe('<p>a <em>italic</em> b</p>');
|
|
});
|
|
|
|
test('斜体 _text_', () => {
|
|
expect(parseMarkdown('a _italic_ b')).toBe('<p>a <em>italic</em> b</p>');
|
|
});
|
|
|
|
test('删除线 ~~text~~', () => {
|
|
expect(parseMarkdown('~~del~~')).toBe('<p><del>del</del></p>');
|
|
});
|
|
|
|
test('行内代码 `code`', () => {
|
|
const html = parseMarkdown('use `code` here');
|
|
expect(html).toContain('<code>code</code>');
|
|
});
|
|
|
|
test('行内代码内容不被解析为格式', () => {
|
|
const html = parseMarkdown('`a **b** c`');
|
|
expect(html).toContain('<code>a **b** c</code>');
|
|
expect(html).not.toContain('<strong>');
|
|
});
|
|
|
|
test('行内代码内容被转义', () => {
|
|
const html = parseMarkdown('`<script>`');
|
|
expect(html).toContain('<script>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 代码块', () => {
|
|
test('围栏代码块 ```', () => {
|
|
const html = parseMarkdown('```\ncode\n```');
|
|
expect(html).toContain('<pre><code');
|
|
expect(html).toContain('code');
|
|
});
|
|
|
|
test('带语言的代码块', () => {
|
|
const html = parseMarkdown('```js\nconsole.log(1)\n```');
|
|
expect(html).toContain('class="language-js"');
|
|
});
|
|
|
|
test('波浪线围栏 ~~~', () => {
|
|
const html = parseMarkdown('~~~\ncode\n~~~');
|
|
expect(html).toContain('<pre><code');
|
|
});
|
|
|
|
test('代码块内容被转义', () => {
|
|
const html = parseMarkdown('```\n<a>\n```');
|
|
expect(html).toContain('<a>');
|
|
});
|
|
|
|
test('highlight 钩子被调用', () => {
|
|
const env = {
|
|
highlight: (code, lang) => `<span class="hl">${code}-${lang}</span>`,
|
|
};
|
|
const html = parseMarkdown('```js\nfoo\n```', env);
|
|
expect(html).toContain('<span class="hl">foo-js</span>');
|
|
});
|
|
|
|
test('highlight 抛错时回退为转义输出', () => {
|
|
const env = {
|
|
highlight: () => { throw new Error('boom'); },
|
|
};
|
|
const html = parseMarkdown('```js\nfoo\n```', env);
|
|
expect(html).toContain('foo');
|
|
expect(html).toContain('<pre><code');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 引用块', () => {
|
|
test('单行引用', () => {
|
|
const html = parseMarkdown('> quote');
|
|
expect(html).toContain('<blockquote>');
|
|
expect(html).toContain('quote');
|
|
});
|
|
|
|
test('多行引用', () => {
|
|
const html = parseMarkdown('> line1\n> line2');
|
|
expect(html).toContain('<blockquote>');
|
|
expect(html).toContain('line1');
|
|
expect(html).toContain('line2');
|
|
});
|
|
|
|
test('引用内可包含其他语法', () => {
|
|
const html = parseMarkdown('> # heading');
|
|
expect(html).toContain('<blockquote>');
|
|
expect(html).toContain('<h1');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 列表', () => {
|
|
test('无序列表 -', () => {
|
|
const html = parseMarkdown('- a\n- b');
|
|
expect(html).toContain('<ul>');
|
|
expect(html).toContain('<li>a</li>');
|
|
expect(html).toContain('<li>b</li>');
|
|
});
|
|
|
|
test('无序列表 *', () => {
|
|
const html = parseMarkdown('* a\n* b');
|
|
expect(html).toContain('<ul>');
|
|
});
|
|
|
|
test('无序列表 +', () => {
|
|
const html = parseMarkdown('+ a\n+ b');
|
|
expect(html).toContain('<ul>');
|
|
});
|
|
|
|
test('有序列表', () => {
|
|
const html = parseMarkdown('1. one\n2. two');
|
|
expect(html).toContain('<ol');
|
|
expect(html).toContain('>one</li>');
|
|
expect(html).toContain('>two</li>');
|
|
});
|
|
|
|
test('有序列表自定义起始编号', () => {
|
|
const html = parseMarkdown('3. three\n4. four');
|
|
expect(html).toContain('<ol');
|
|
expect(html).toContain('value="3"');
|
|
});
|
|
|
|
test('任务列表未完成', () => {
|
|
const html = parseMarkdown('- [ ] todo');
|
|
expect(html).toContain('me-task-item');
|
|
expect(html).toContain('<input type="checkbox" disabled/>');
|
|
expect(html).not.toContain('checked');
|
|
});
|
|
|
|
test('任务列表已完成', () => {
|
|
const html = parseMarkdown('- [x] done');
|
|
expect(html).toContain('checked');
|
|
});
|
|
|
|
test('任务列表大写 X 也算完成', () => {
|
|
const html = parseMarkdown('- [X] done');
|
|
expect(html).toContain('checked');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 水平线', () => {
|
|
test('--- 作为水平线', () => {
|
|
expect(parseMarkdown('---')).toBe('<hr/>');
|
|
});
|
|
|
|
test('*** 作为水平线', () => {
|
|
expect(parseMarkdown('***')).toBe('<hr/>');
|
|
});
|
|
|
|
test('___ 作为水平线', () => {
|
|
expect(parseMarkdown('___')).toBe('<hr/>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 表格', () => {
|
|
test('基本表格', () => {
|
|
const md = '| a | b |\n| --- | --- |\n| 1 | 2 |';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('<table>');
|
|
expect(html).toContain('<thead>');
|
|
expect(html).toContain('<th>a</th>');
|
|
expect(html).toContain('<th>b</th>');
|
|
expect(html).toContain('<td>1</td>');
|
|
expect(html).toContain('<td>2</td>');
|
|
});
|
|
|
|
test('表格被 me-table-wrap 包裹', () => {
|
|
const md = '| a |\n| --- |\n| 1 |';
|
|
expect(parseMarkdown(md)).toContain('me-table-wrap');
|
|
});
|
|
|
|
test('非分隔行不构成表格', () => {
|
|
const html = parseMarkdown('| a |\nnot a separator');
|
|
expect(html).not.toContain('<table>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - 链接与图片', () => {
|
|
test('基本链接', () => {
|
|
const html = parseMarkdown('[text](https://example.com)');
|
|
expect(html).toContain('<a href="https://example.com"');
|
|
expect(html).toContain('target="_blank"');
|
|
expect(html).toContain('rel="noopener noreferrer"');
|
|
expect(html).toContain('>text</a>');
|
|
});
|
|
|
|
test('自动链接 <url>', () => {
|
|
const html = parseMarkdown('<https://example.com>');
|
|
expect(html).toContain('<a href="https://example.com"');
|
|
});
|
|
|
|
test('图片', () => {
|
|
const html = parseMarkdown('');
|
|
expect(html).toContain('<img src="https://example.com/img.png"');
|
|
expect(html).toContain('alt="alt"');
|
|
expect(html).toContain('loading="lazy"');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - XSS 防护', () => {
|
|
test('文本中的 HTML 标签被转义', () => {
|
|
const html = parseMarkdown('<script>alert(1)</script>');
|
|
expect(html).toContain('<script>');
|
|
expect(html).not.toContain('<script>');
|
|
});
|
|
|
|
test('javascript: 协议链接被过滤', () => {
|
|
const html = parseMarkdown('[click](javascript:alert(1))');
|
|
expect(html).not.toContain('href="javascript:');
|
|
});
|
|
|
|
test('vbscript: 协议被过滤', () => {
|
|
const html = parseMarkdown('[x](vbscript:msgbox(1))');
|
|
expect(html).not.toContain('href="vbscript:');
|
|
});
|
|
|
|
test('file: 协议被过滤', () => {
|
|
const html = parseMarkdown('[x](file:///etc/passwd)');
|
|
expect(html).not.toContain('href="file:');
|
|
});
|
|
|
|
test('非 image 的 data: 协议被过滤', () => {
|
|
const html = parseMarkdown('[x](data:text/html,<script>)');
|
|
expect(html).not.toContain('href="data:text/html');
|
|
});
|
|
|
|
test('data:image: 协议被允许', () => {
|
|
const html = parseMarkdown('');
|
|
expect(html).toContain('src="data:image/png;base64,abc"');
|
|
});
|
|
|
|
test('图片 javascript: 协议被过滤', () => {
|
|
const html = parseMarkdown(')');
|
|
expect(html).not.toContain('src="javascript:');
|
|
});
|
|
});
|
|
|
|
describe('safeUrl', () => {
|
|
test('正常 http url 原样返回', () => {
|
|
expect(safeUrl('https://example.com')).toBe('https://example.com');
|
|
});
|
|
|
|
test('空值返回空字符串', () => {
|
|
expect(safeUrl('')).toBe('');
|
|
expect(safeUrl(null)).toBe('');
|
|
expect(safeUrl(undefined)).toBe('');
|
|
});
|
|
|
|
test('javascript: 返回空', () => {
|
|
expect(safeUrl('javascript:alert(1)')).toBe('');
|
|
});
|
|
|
|
test('大小写不敏感过滤', () => {
|
|
expect(safeUrl('JAVASCRIPT:alert(1)')).toBe('');
|
|
expect(safeUrl('JavaScript:alert(1)')).toBe('');
|
|
});
|
|
|
|
test('trim 空白', () => {
|
|
expect(safeUrl(' https://example.com ')).toBe('https://example.com');
|
|
});
|
|
});
|
|
|
|
describe('slugify', () => {
|
|
test('英文转小写连字符', () => {
|
|
expect(slugify('Hello World')).toBe('hello-world');
|
|
});
|
|
|
|
test('保留中文', () => {
|
|
expect(slugify('你好 世界')).toBe('你好-世界');
|
|
});
|
|
|
|
test('移除特殊字符', () => {
|
|
expect(slugify('A! B@ C#')).toBe('a-b-c');
|
|
});
|
|
|
|
test('合并多个连字符', () => {
|
|
expect(slugify('a---b')).toBe('a-b');
|
|
});
|
|
|
|
test('去除首尾连字符', () => {
|
|
expect(slugify('-hello-')).toBe('hello');
|
|
});
|
|
|
|
test('slugify 空/特殊字符输入返回兜底值', () => {
|
|
expect(slugify('')).toBe('heading');
|
|
expect(slugify('###')).toBe('heading');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.2 新语法', () => {
|
|
test('高亮标记 ==text==', () => {
|
|
const html = parseMarkdown('==highlight==');
|
|
expect(html).toContain('<mark>highlight</mark>');
|
|
});
|
|
|
|
test('上标 ^text^', () => {
|
|
const html = parseMarkdown('x^2^');
|
|
expect(html).toContain('<sup>2</sup>');
|
|
});
|
|
|
|
test('下标 ~text~', () => {
|
|
const html = parseMarkdown('H~2~O');
|
|
expect(html).toContain('<sub>2</sub>');
|
|
});
|
|
|
|
test('Emoji 短码 :smile:', () => {
|
|
const html = parseMarkdown(':smile: :rocket:');
|
|
expect(html).toContain('😊');
|
|
expect(html).toContain('🚀');
|
|
});
|
|
|
|
test('未知 Emoji 短码保留原文', () => {
|
|
const html = parseMarkdown(':unknown_emoji:');
|
|
expect(html).toContain(':unknown_emoji:');
|
|
});
|
|
|
|
test('表格对齐 :---: 居中', () => {
|
|
const md = '| a | b |\n| :---: | ---: |\n| 1 | 2 |';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('text-align:center');
|
|
expect(html).toContain('text-align:right');
|
|
});
|
|
});
|
|
|
|
// ============ v0.1.4 新增语法测试 ============
|
|
|
|
describe('parseMarkdown - v0.1.4 Setext 标题', () => {
|
|
test('Setext h1 ===', () => {
|
|
const html = parseMarkdown('Heading 1\n=======');
|
|
expect(html).toContain('<h1');
|
|
expect(html).toContain('Heading 1');
|
|
});
|
|
|
|
test('Setext h2 ---', () => {
|
|
const html = parseMarkdown('Heading 2\n-------');
|
|
expect(html).toContain('<h2');
|
|
expect(html).toContain('Heading 2');
|
|
});
|
|
|
|
test('Setext 标题生成 id', () => {
|
|
const html = parseMarkdown('My Title\n===');
|
|
expect(html).toContain('id="my-title"');
|
|
});
|
|
|
|
test('Setext 与 ATX 共存正确', () => {
|
|
const html = parseMarkdown('ATX\n===\n\n# Another');
|
|
expect(html).toContain('<h1');
|
|
expect(html).toContain('ATX');
|
|
expect(html).toContain('Another');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 嵌套列表', () => {
|
|
test('两层无序列表嵌套', () => {
|
|
const html = parseMarkdown('- parent\n - child');
|
|
expect(html).toContain('<ul>');
|
|
expect(html).toContain('parent');
|
|
expect(html).toContain('child');
|
|
});
|
|
|
|
test('两层有序列表嵌套', () => {
|
|
const html = parseMarkdown('1. first\n 1. sub');
|
|
expect(html).toContain('<ol');
|
|
expect(html).toContain('first');
|
|
expect(html).toContain('sub');
|
|
});
|
|
|
|
test('无序列表内嵌套有序列表', () => {
|
|
const html = parseMarkdown('- item\n 1. sub1\n 2. sub2');
|
|
expect(html).toContain('<ul>');
|
|
expect(html).toContain('<ol');
|
|
expect(html).toContain('sub1');
|
|
expect(html).toContain('sub2');
|
|
});
|
|
|
|
test('三级嵌套', () => {
|
|
const html = parseMarkdown('- l1\n - l2\n - l3');
|
|
expect(html).toContain('l1');
|
|
expect(html).toContain('l2');
|
|
expect(html).toContain('l3');
|
|
});
|
|
|
|
test('嵌套任务列表', () => {
|
|
const html = parseMarkdown('- parent\n - [x] done');
|
|
expect(html).toContain('me-task-item');
|
|
expect(html).toContain('checked');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 缩进代码块', () => {
|
|
test('4空格缩进代码块', () => {
|
|
const html = parseMarkdown(' code line 1\n code line 2');
|
|
expect(html).toContain('<pre><code>');
|
|
expect(html).toContain('code line 1');
|
|
expect(html).toContain('code line 2');
|
|
});
|
|
|
|
test('缩进代码块内容被转义', () => {
|
|
const html = parseMarkdown(' <div>');
|
|
expect(html).toContain('<pre><code>');
|
|
expect(html).not.toContain('<div>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 HTML 注释', () => {
|
|
test('HTML 注释被透传', () => {
|
|
const html = parseMarkdown('<!-- comment -->');
|
|
expect(html).toContain('<!--');
|
|
expect(html).toContain('comment');
|
|
expect(html).toContain('-->');
|
|
});
|
|
|
|
test('HTML 注释内内容不被转义', () => {
|
|
const html = parseMarkdown('<!-- <b>bold</b> -->');
|
|
expect(html).toContain('<!-- <b>bold</b> -->');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 实体引用保护', () => {
|
|
test('已有实体引用不被二次转义', () => {
|
|
const html = parseMarkdown('AT&T');
|
|
expect(html).toContain('&');
|
|
// & 应保持为 & 而非 &amp;
|
|
expect(html).not.toContain('&amp;');
|
|
});
|
|
|
|
test('数字实体引用被保护', () => {
|
|
const html = parseMarkdown('© 2024');
|
|
expect(html).toContain('©');
|
|
});
|
|
|
|
test('十六进制实体引用被保护', () => {
|
|
const html = parseMarkdown('<');
|
|
expect(html).toContain('<');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 硬换行', () => {
|
|
test('行尾2空格产生硬换行', () => {
|
|
const html = parseMarkdown('line1 \nline2');
|
|
// 硬换行不应产生单独的 <br/>,而是保持为真正的 <br/>
|
|
// 软换行 \n 产生 <br/>,硬换行(2空格+\n)也应产生 <br/>
|
|
// 当前实现:2空格换行和普通换行都生成 <br/>
|
|
expect(html).toContain('line1');
|
|
expect(html).toContain('line2');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 链接标题单引号', () => {
|
|
test('链接 title 使用单引号', () => {
|
|
const html = parseMarkdown('[text](https://example.com \'title\')');
|
|
expect(html).toContain('href="https://example.com"');
|
|
expect(html).toContain('title="title"');
|
|
});
|
|
|
|
test('链接 title 使用双引号(兼容)', () => {
|
|
const html = parseMarkdown('[text](https://example.com "title")');
|
|
expect(html).toContain('title="title"');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 LaTeX 数学公式', () => {
|
|
test('行内公式 $...$', () => {
|
|
const html = parseMarkdown('Euler: $e^{i\\pi} = -1$');
|
|
expect(html).toContain('me-math-inline');
|
|
expect(html).toContain('e^{i\\pi} = -1');
|
|
});
|
|
|
|
test('块级公式 $$...$$(单行)', () => {
|
|
const html = parseMarkdown('$$\\int_0^\\infty e^{-x} dx = 1$$');
|
|
expect(html).toContain('me-math-block');
|
|
});
|
|
|
|
test('块级公式 $$...$$(多行)', () => {
|
|
const md = '$$\n\\begin{aligned}\nx &= 1 + 2 \\\\\ny &= 3 + 4\n\\end{aligned}\n$$';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('me-math-block');
|
|
expect(html).toContain('\\begin{aligned}');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 脚注', () => {
|
|
test('脚注引用与定义', () => {
|
|
const md = 'Text with footnote[^1].\n\n[^1]: This is the footnote.';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('me-footnote-ref');
|
|
expect(html).toContain('fnref-1');
|
|
expect(html).toContain('me-footnotes');
|
|
expect(html).toContain('fn-1');
|
|
expect(html).toContain('This is the footnote.');
|
|
});
|
|
|
|
test('多个脚注', () => {
|
|
const md = 'First[^a] and second[^b].\n\n[^a]: Note A.\n[^b]: Note B.';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('me-footnotes');
|
|
expect(html).toContain('Note A.');
|
|
expect(html).toContain('Note B.');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 定义列表', () => {
|
|
test('基本定义列表', () => {
|
|
const md = 'Term\n: Definition of the term.';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('<dl>');
|
|
expect(html).toContain('<dt>');
|
|
expect(html).toContain('Term');
|
|
expect(html).toContain('<dd>');
|
|
expect(html).toContain('Definition of the term.');
|
|
});
|
|
|
|
test('多条定义', () => {
|
|
const md = 'Term\n: Definition 1.\n: Definition 2.';
|
|
const html = parseMarkdown(md);
|
|
expect(html).toContain('Definition 1.');
|
|
expect(html).toContain('Definition 2.');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 反引号精确匹配', () => {
|
|
test('双反引号包裹单反引号', () => {
|
|
const html = parseMarkdown('`` ` ``');
|
|
expect(html).toContain('<code>');
|
|
expect(html).toContain('`');
|
|
});
|
|
|
|
test('不同长度反引号串', () => {
|
|
const html = parseMarkdown('``` `code` ```');
|
|
expect(html).toContain('<code>');
|
|
// 应包含原始反引号内容
|
|
expect(html).toContain('`code`');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 斜体优化', () => {
|
|
test('*text* 正常斜体', () => {
|
|
const html = parseMarkdown('a *italic* b');
|
|
expect(html).toContain('<em>italic</em>');
|
|
});
|
|
|
|
test('*** 不作为斜体', () => {
|
|
const html = parseMarkdown('***');
|
|
expect(html).not.toContain('<em>');
|
|
});
|
|
|
|
test('__ 不作为粗体误判', () => {
|
|
const html = parseMarkdown('__bold__');
|
|
expect(html).toContain('<strong>bold</strong>');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 引用块优化', () => {
|
|
test('引用块 >text 无空格', () => {
|
|
const html = parseMarkdown('>quote text');
|
|
expect(html).toContain('<blockquote>');
|
|
expect(html).toContain('quote text');
|
|
});
|
|
|
|
test('嵌套引用', () => {
|
|
const html = parseMarkdown('> outer\n>> nested');
|
|
expect(html).toContain('<blockquote>');
|
|
expect(html).toContain('outer');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 safeUrl 增强', () => {
|
|
test('正常 http/https url 通过', () => {
|
|
expect(safeUrl('http://example.com')).toBe('http://example.com');
|
|
expect(safeUrl('https://example.com')).toBe('https://example.com');
|
|
});
|
|
|
|
test('mailto: 协议通过', () => {
|
|
expect(safeUrl('mailto:test@example.com')).toBe('mailto:test@example.com');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 slugify 增强', () => {
|
|
test('全角字符处理', () => {
|
|
expect(slugify('你好世界')).toBe('你好世界');
|
|
});
|
|
|
|
test('Unicode NFKC 规范化', () => {
|
|
// 全角英文字母转半角
|
|
const slug = slugify('Cat');
|
|
// NFKC 将全角 C/a/t 转为半角
|
|
expect(slug).toContain('cat');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 表情扩展', () => {
|
|
test('新增表情 :confetti:', () => {
|
|
const html = parseMarkdown(':confetti:');
|
|
expect(html).toContain('🎊');
|
|
});
|
|
|
|
test('新增表情 :rainbow:', () => {
|
|
const html = parseMarkdown(':rainbow:');
|
|
expect(html).toContain('🌈');
|
|
});
|
|
|
|
test('新增表情 :hamburger:', () => {
|
|
const html = parseMarkdown(':hamburger:');
|
|
expect(html).toContain('🍔');
|
|
});
|
|
|
|
test('新增表情 :earth:', () => {
|
|
const html = parseMarkdown(':earth:');
|
|
expect(html).toContain('🌍');
|
|
});
|
|
});
|
|
|
|
describe('parseMarkdown - v0.1.4 代码块语言扩展', () => {
|
|
test('语言标记支持 # + . 等字符', () => {
|
|
const html = parseMarkdown('```c++\nint main() {}\n```');
|
|
expect(html).toContain('language-c++');
|
|
});
|
|
|
|
test('语言标记支持点号', () => {
|
|
const html = parseMarkdown('```file.txt\ncontent\n```');
|
|
expect(html).toContain('language-file.txt');
|
|
});
|
|
});
|