Files
KQL ce6aa207e9 fix: 修复图片路径以适配GitHub Pages base path
- 将所有图片路径从绝对路径改为使用 process.env.PUBLIC_URL
- 修复 HomePage.tsx 中所有图片引用
- 修复 CoursePage.tsx 中所有图片引用
- 确保图片在 GitHub Pages 上正确加载

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 09:24:45 +08:00

26 lines
932 B
JavaScript

'use strict';
var data = {
anchor: { arg: 'bar"baz"', expected: '<a name="bar&quot;baz&quot;">foo</a>' },
big: '<big>foo</big>',
blink: '<blink>foo</blink>',
bold: '<b>foo</b>',
fixed: '<tt>foo</tt>',
fontcolor: { arg: 'blue"red"green', expected: '<font color="blue&quot;red&quot;green">foo</font>' },
fontsize: { arg: '10"large"small', expected: '<font size="10&quot;large&quot;small">foo</font>' },
italics: '<i>foo</i>',
link: { arg: 'url"http://"', expected: '<a href="url&quot;http://&quot;">foo</a>' },
small: '<small>foo</small>',
strike: '<strike>foo</strike>',
sub: '<sub>foo</sub>',
sup: '<sup>foo</sup>'
};
module.exports = function (method, name, t) {
var result = data[name] || {};
var expected = typeof result === 'string' ? result : result.expected;
var actual = typeof result === 'string' ? method('foo') : method('foo', result.arg);
t.equal(actual, expected, name + ': got expected result');
};