This commit is contained in:
hackrobot
2024-08-12 15:09:54 +08:00
parent f2b3b8cbaf
commit f5a5e804ed

View File

@@ -177,9 +177,9 @@ renderer.heading = function (text, level, raw) {
if (level == 1) {
return createDecoratedTitleHTML(text);
} else if (level == 2) {
return `<div>🔥${text}</div>\n`;
return `<div>📝${text}</div>\n`;
} else {
return `<div>🔥${text}</div>\n`;
return `<div>📝${text}</div>\n`;
}
return `<div>╔═━──────━═╗<br/>
@@ -350,13 +350,13 @@ const Index = () => {
let contactMe = `<br><br>💬 欢迎交流<br>后台私信发送『关键词』: 加群`;
// setmarkText(value);
setmarkText(value + contactMe);
// setmarkText(value + contactMe);
// if (value?.length < 10) {
// setmarkText(value);
// } else {
// setmarkText(value + contactMe);
// }
if (value?.length < 10) {
setmarkText(value);
} else {
setmarkText(value + contactMe);
}
};
useEffect(() => {}, []);