manipulate scribble --redirect option as URL instead of string
svn: r12229 original commit: 791a911198a8248255981c304c3d0b32eb606942
This commit is contained in:
parent
fa3a1de098
commit
1e26551bb6
|
@ -847,12 +847,19 @@
|
|||
`((a [(href
|
||||
,(if (and ext? external-tag-path)
|
||||
;; Redirected to search:
|
||||
(format "~a;tag=~a"
|
||||
external-tag-path
|
||||
(base64-encode
|
||||
(string->bytes/utf-8
|
||||
(format "~a" (serialize
|
||||
(link-element-tag e))))))
|
||||
(url->string
|
||||
(let ([u (string->url external-tag-path)])
|
||||
(struct-copy
|
||||
url
|
||||
u
|
||||
[query
|
||||
(cons (cons 'tag
|
||||
(bytes->string/utf-8
|
||||
(base64-encode
|
||||
(string->bytes/utf-8
|
||||
(format "~a" (serialize
|
||||
(link-element-tag e)))))))
|
||||
(url-query u))])))
|
||||
;; Normal link:
|
||||
(format "~a~a~a"
|
||||
(from-root (relative->path (dest-path dest))
|
||||
|
|
Loading…
Reference in New Issue
Block a user