You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
366 B
EmacsLisp
8 lines
366 B
EmacsLisp
(defun cardimgs (start end)
|
|
"Insert HTML string for card images"
|
|
(interactive "r")
|
|
(setq original (buffer-substring (region-beginning) (region-end)))
|
|
(delete-region start end)
|
|
(setq imgs (replace-regexp-in-string ", " ".gif\"><img src=\"https://colors-tcg.eu/cards/" original))
|
|
(insert (concat "<img src=\"https://colors-tcg.eu/cards/" imgs ".gif\">")))
|