Fix QR Code Bug When Short URL Contains a Dot in jQuery

Referencing 233boy's QR code tool. https://233boy.github.io/tools/qr.html The QR code JS used is https://cdn.jsdelivr.net/gh/lrsjng/jquery-qrcode@0.18.0/dist/jquery-qrcode.min.js and depends on jQuery https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js Modify index.html. Add a "Generate QRcode" button after the existing short URL text field. Then, between the existing short URL row and the long URL row, add a div as a placeholder for the QR code. When the button is pressed, it generates the QR code and fills it into that placeholder div.

白嫖worker 自建短链服务 Url-Shorten-Worker 显示短链的二维码QRcode

参考233boy的二维码工具. https://233boy.github.io/tools/qr.html 其中用到的二维码JS是 https://cdn.jsdelivr.net/gh/lrsjng/jquery-qrcode@0.18.0/dist/jquery-qrcode.min.js 并依赖 jQuery https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js 修改index.html. 在现有的短链文本框后再增加一个生成QRcode的按钮. 然后在现有的短链这一行与长链这一行之间, 添加一个div作为二维码的占位. 按下按钮的时候, 就生成二维码, 填充到那个占位的div里面.

Fixing Chinese Short Links in Cloudflare Worker

Requirement A friend reported that if a custom short link uses Chinese characters, it doesn't work. Let me test it. Add a "Chinese short link" in the management page. Query the KV store, added correctly. Tested in the browser, got an error saying it doesn't exist.

白嫖worker 自建短链服务 Url-Shorten-Worker 支持中文 支持emoji

需求 有朋友反馈, 如果短链自定义为中文, 就不行. 测试一下. 在管理页面中添加 "中文短链" 查询 KV 库, 添加正确. 在浏览器中测试, 报错不存在.

Url-Shorten-Worker: Render Markdown for Journal Mode

Requirements Previously I have already implemented Self-hosted URL Shortening Service Url-Shorten-Worker Turns into a Notebook NetJournal However, directly accessing the short link shows the raw Markdown source code, without displaying the rich text and image effect.

白嫖worker 自建短链服务 Url-Shorten-Worker 变身日记本 NetJournal 显示结果页面支持 Markdown

需求 之前已经实现了 自建短链服务Url-Shorten-Worker变身日记本NetJournal 但是, 直接访问短链显示的是Markdown源码, 没有显示图文效果.