BIBLIOGRAPHY

“Perplexity: Citations · Issue #299 · Karthink/Gptel.” n.d. GitHub. Accessed December 31, 2024. https://github.com/karthink/gptel/issues/299.

Xeppetto. 2022. “웹브라우저 주소 복사 시 한글 깨질 때 Utf8 Url Encoding Cp949.” 천년나무 블로그. April 17, 2022. https://xeppetto.github.io/%EC%86%8C%ED%94%84%ED%8A%B8%EC%9B%A8%EC%96%B4/Tools/20220417-%EC%9B%B9%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80-%EC%A3%BC%EC%86%8C-%EB%B3%B5%EC%82%AC-%EC%8B%9C-%ED%95%9C%EA%B8%80-%EA%B9%A8%EC%A7%88%EB%95%8C/index.html.

History

문제 정의

웹브라우저 주소 복사 시 한글 깨질 때 utf8 url encoding cp949

(Xeppetto 2022)

  • Xeppetto
  • 한국 사람이면 누구나 한 번쯤 경험해보았을 텐데, 블로그 포스팅을 한글 제목으로 하고, 주소를 복사해서 친구에게 보내주려고 하면 한글이 온통 이상한 방식으로 나온다. 예를 들어, 본 블로그 주소인 “xeppetto.github.io/소프트웨어/Tools/20220417-웹브라우저-주소-복사-시-한글-깨질때”를 웹브라우저 주소창에서
  • 2022

한글 인코딩 - 처리 지피텔

;; defsubst
(defun gptel--perplexity-parse-citations (citations)
  (let ((counter 0))
    (concat "\n\n- Citations:\n"
            (mapconcat (lambda (url)
                         (setq counter (1+ counter))
                         (format "  [%d] %s" counter (decode-coding-string (url-unhex-string url t) 'utf-8)))
                       citations "\n"))))

Perplexity: citations · Issue #299 · karthink/gptel

(“Perplexity: Citations · Issue #299 · Karthink/Gptel” n.d.)

  • Perplexity

  • First, Thank you very much for this great package! I’m (also) using perplexity. So far I successfully managed to set gptel in order to make API calls to the perplexity models. One of the nice point…