Hugo로 운영하는 Github pages에 Decap CMS(Netlify CMS) 붙이기
Hugo로 운영하는 github pages는 글쓰기가 불편합니다. github에서 바로 포스트를 작성하여 커밋할 수도 있지만, 작성된 마크다운 파일의 프리뷰를 보려면 로컬에서 실행을 해봐야 하기 때문에 결국에는 해당 저장소를 clone 해야 합니다. ...
Hugo로 운영하는 github pages는 글쓰기가 불편합니다. github에서 바로 포스트를 작성하여 커밋할 수도 있지만, 작성된 마크다운 파일의 프리뷰를 보려면 로컬에서 실행을 해봐야 하기 때문에 결국에는 해당 저장소를 clone 해야 합니다. ...
1. layouts/partials/extend_head.html 수정하기 1 2 3 4 5 6 7 8 9 {{- /* Insert any custom code (web-analytics, resources, etc.) - it will appear in the <head></head> section of every page. */ -}} {{- /* Can be overwritten by partial with the same name in the global layouts. */ -}} {{- /* Head custom content area end */ -}} + {{ if or .Params.math .Site.Params.math }} + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css" integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X" crossorigin="anonymous"> + <script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js" integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4" crossorigin="anonymous"></script> + <script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous" + onload="renderMathInElement(document.body);"></script> + {{ end }} 2. math config 수정하기 1의 코드를 보시면 아시겠지만 params 하위에 math가 위치되어야 합니다. 1 2 3 4 5 6 7 [params] version = "4.x" # Used to give a friendly message when you have an incompatible update debug = false # If true, load `eruda.min.js`. See https://github.com/liriliri/eruda + math = true since = "2017" # Site creation time # 站点建立时间 3. 참고 https://github.com/adityatelange/hugo-PaperMod/issues/236 ...
7월 1일부터 유니버셜 애널리틱스(UA-xxx)가 더 이상 데이터를 수집하지 않습니다. 아래와 같은 경고문을 한 1년간 보기만 하다가 일찍 깬 오늘(어제 축구를 너무 빡세게 했나..) 구글 애널리틱스 4로 변경했습니다. ...