less than 1 minute read

2022.05.01

Github[blog]

Guthub 댓글기능 추가하기

📜_config.yml 파일 에서 **가장 하단의 Comment 를 ture로 변경한다.

  다음과 같이 📜 category-archive.md를 생성하면 된다.
  ---
  defaults:
 _posts
- scope:
path: ""
type: posts
values:
layout: single
author_profile: true
read_time: true
comments: true
share: true
related: true
  ---

🔥 disqus 홈페이지를 방문에 아이디를 생성하고 나의 깃허브 주소를 등록한다.

📜_config.yml 파일 에서 **Comment **을 다음과 같이 수정한다.

  ---
 comments:
provider: "disqus"  # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
disqus:
shortname: "Hoonikim"
  ---

### Github Analytics 등록하기 그다음으로는 📊 구글 에널리틱스 에 접속해서 나의 깃허브 주소를 등록한다. 그 후 📜_config.yml 파일 에서 Analytics 를 다음과 같이 수정한다.

Analytics
analytics:
provider: "google-gtag"  # false (default), "google", "google-universal", "google-gtag", "custom"
google:
tracking_id: "G-CN3D3G7LBZ"  트렉킹 아이디는 구글에널리틱스를 개설할시 우측 상단에 표시된다.
anonymize_ip: false

여기서는 나의 100마디 말보다 하나의 영상을 참고해서 보는 것이 가장 빠르다
▶️ Youtube - 테디노트 참고

Comments