M-x yank-text-html
でクリップボードから text/html 形式の文字列を取得します。
(defun yank-text-html ()
(interactive)
(if (functionp 'gui-get-selection)
(insert (gui-get-selection 'CLIPBOARD 'text/html))
(yank)))
Go to list of users who liked
More than 1 year has passed since last update.
M-x yank-text-html
でクリップボードから text/html 形式の文字列を取得します。
(defun yank-text-html ()
(interactive)
(if (functionp 'gui-get-selection)
(insert (gui-get-selection 'CLIPBOARD 'text/html))
(yank)))
Register as a new user and use Qiita more conveniently
Go to list of users who liked