CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 06:28:53 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=5a447517ed606419fce52459754c15626c0459accc88c4e6f92acaa0ede01b42a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22N1GCIX2IqcQa4D91xBmcYNGla5sSoENB%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cc4cc9bd05e084-BLR
elisp url transformer - Pastebin.com
SHARE
TWEET

elisp url transformer
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (defun mwn/url-transform (&optional to-url)
- "Replace characters in a URL. Some sites block links in posts. This is a
- workaround. Only works upon an active region. Default (no prefix)
- obscures the URL. With prefix (C-u most likely) restores the URL to a
- form that a browser will accept."
- (interactive "P")
- (when (region-active-p)
- (save-excursion
- (let ((beginning (region-beginning))
- (end (region-end))
- (pairs '((":" . "(colon)")
- ("/" . "(slash)")
- ("." . "(dot)"))))
- (cl-labels ((f (pair)
- (let* ((from-str (if to-url (cdr pair) (car pair)))
- (to-str (if to-url (car pair) (cdr pair)))
- (adjust (- (length to-str) (length from-str))))
- (goto-char beginning)
- (while (search-forward from-str end t)
- (replace-match to-str)
- (setq end (+ end adjust))))))
- (mapc #'f pairs))))))
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Trading Profit Method ✅ NEVER SEEN BEFORE...
JavaScript | 4 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ V
JavaScript | 9 sec ago | 0.24 KB
-
⭐ Instant BTC Profit Method ✅ NEVER SEEN BEFO...
JavaScript | 14 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ D
JavaScript | 20 sec ago | 0.24 KB
-
⭐✅ MAKE $2000 INSTANTLY ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 23 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ M
JavaScript | 31 sec ago | 0.24 KB
-
⭐ Free Crypto Method ✅ NEVER SEEN BEFORE ⭐⭐⭐
JavaScript | 32 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ✅ NEVER SEEN...
JavaScript | 41 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand