2分钟手搓一个人人都能用的最简单的 notion 评论系统
2分钟手搓一个人人都能用的最简单的 notion 评论系统
NotionComments
特点
使用方法
1. 环境配置
2. Notion 数据库配置

2分钟手搓一个人人都能用的最简单的 notion 评论系统

<html> <head> <meta charset="utf-8"> <style> .typing { width: 100em; height: 1.25em; border-right: 1px solid transparent; animation: typing 3.5s steps(200, end); font-family: Consolas, Monaco; word-break: break-all; overflow: hidden; } /* 打印效果 */ @keyframes typing { from { width: 0; } to { width: 100em; } } </style> </head> <body> <p class="typing"> Sure, please provide me with the text you want me to summarize and I will summarize it for you. You can also specify the desired length of the summary, such as "short" for a summary of under 100 words, "medium" for a summary of 100-250 words, or "long" for a summary of more than 250 words. </p> </body> </html>