답변:
또는 쿼리 교체를 위해 다중 커서 를 사용할 수 있습니다 .
또한 다음과 같은 것을 사용하는 것이 좋습니다.
(defun wrap-html-tag (tagName)
"Add a tag to beginning and ending of current word or text selection."
(interactive "sEnter tag name: ")
(let (p1 p2 inputText)
(if (use-region-p)
(progn
(setq p1 (region-beginning) )
(setq p2 (region-end) )
)
(let ((bds (bounds-of-thing-at-point 'symbol)))
(setq p1 (car bds) )
(setq p2 (cdr bds) ) ) )
(goto-char p2)
(insert "</" tagName ">")
(goto-char p1)
(insert "<" tagName ">")
))
모든 기능을 갖춘 솔루션을 사용하려면 텍스트를 조직 모드 목록으로 변환 하고 HTML로 내보내십시오 . '*', active org-mode
및 run 접두어 줄 org-html-export-to-html
.
org-mode
한 다음 HTML로 내보내십시오) 괜찮습니다.하지만 사람들이 "빠르고 더러운"것을 원한다고 꾸짖는 것이 타당하지 않다고 생각합니다 HTML 생성.