diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx
index 3322bc5..88f83c2 100644
--- a/src/renderer/App.tsx
+++ b/src/renderer/App.tsx
@@ -59,7 +59,8 @@ const createDecoratedTitleHTML = (text: any) => {
const bottomBorder = `${cornerBottomLeft}${edgeLength}${cornerBottomRight}`;
const middleLine = ` ๐ข ${text}`;
- return `
* * * * * * * * * * *
// * ${text} *
// * * * * * * * * * * *
@@ -279,7 +281,9 @@ renderer.link = function (href, title, text) {
renderer.paragraph = function (text) {
// return `
${text}
\n`;
// return `
${text}
`;
- return `
${text}
`;
+ // return `
${text}
`;
+ // return `
${text}
`;
+ return `
${text}
\n`;
};
renderer.br = function () {
return '
';
@@ -318,43 +322,44 @@ const Index = () => {
// let value = onInputtxt?.target?.value;
let value = onInputtxt?.target?.value;
- if (value?.length > 10) {
- // +`๐
ฅ๐ข๐:hackrobot`
- // +`โ๐
ฅ=>๐ฉ๐: hackrobot,ๅฏไปฅๆพๆ่ๅคฉ๐ฌ `
- // let contactMe=`
โโโโโ
ๅจ๐ฉใwฮ๐ซ๐๐กใโก๏ธ่็ณปๆ ใโ๐
ฅใ:
- // โญโโโโโโโโโโโโโโโโโฎ
- // โ ๐ hackrobot
- // โฐโโโโโโโโโโโโโโโโโฏ
- // ๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ
- // `
+ // +`๐
ฅ๐ข๐:hackrobot`
+ // +`โ๐
ฅ=>๐ฉ๐: hackrobot,ๅฏไปฅๆพๆ่ๅคฉ๐ฌ `
+ // let contactMe=`
โโโโโ
ๅจ๐ฉใwฮ๐ซ๐๐กใโก๏ธ่็ณปๆ ใโ๐
ฅใ:
+ // โญโโโโโโโโโโโโโโโโโฎ
+ // โ ๐ hackrobot
+ // โฐโโโโโโโโโโโโโโโโโฏ
+ // ๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ
+ // `
+ // โ ๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ
- // โ ๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ
- let contactMe = `
โญโโโโโโโโโโโโโโโโโฎ
-โ ๐ฉใwฮ๐ซ๐๐กใโก๏ธ่็ณปๆใโ๐
ฅใ
-โ
-โ ๐ hackrobot
-โฐโโโโโโโโโโโโโโโโโฏ
๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ`;
+ // let contactMe = `
โญโโโโโโโโโโโโโโโโโฎ
+ // โ ๐ฉใwฮ๐ซ๐๐กใโก๏ธ่็ณปๆใโ๐
ฅใ
+ // โ
+ // โ ๐ hackrobot
+ // โฐโโโโโโโโโโโโโโโโโฏ
๐ฌ ้ๆถๆฌข่ฟ่ๅคฉ`;
- if (value?.length < 10) {
- setmarkText(value);
- } else {
- setmarkText(value + contactMe);
- }
- }
+ // let contactMe = `
\n๐ฌ ๅๅฐๅ้ๅ
ณ้ฎ่ฏ: ๅ ็พค`;
+ let contactMe = `\n๐ฌ ๅๅฐๅ้ๅ
ณ้ฎ่ฏ: ๅ ็พค`;
+
+ setmarkText(value + contactMe);
+ // if (value?.length < 10) {
+ // setmarkText(value);
+ // } else {
+ // setmarkText(value + contactMe);
+ // }
};
useEffect(() => {}, []);
const copyToClipboard = () => {
if (divRef.current) {
- const htmlContentinnerHTML = divRef.current.innerHTML;
- console.log('htmlContentinnerHTML', htmlContentinnerHTML);
- const htmlContentouterHTML = divRef.current.outerHTML;
- console.log('htmlContentouterHTML', htmlContentouterHTML);
-
+ // const htmlContentinnerHTML = divRef.current.innerHTML;
+ // console.log('htmlContentinnerHTML', htmlContentinnerHTML);
+ // const htmlContentouterHTML = divRef.current.outerHTML;
+ // console.log('htmlContentouterHTML', htmlContentouterHTML);
const htmlContent = divRef.current.innerText;
+ // const htmlContent = divRef.current.outerHTML;
// const htmlContent = divRef.current.textContent;
-
navigator.clipboard
.writeText(htmlContent)
.then(() => {