jekyll에 mathjax 추가

layouts/defaults.html에 mathjax script 추가 <script type="text/x-mathjax-config">MathJax.Hub.Config({tex2jax: {inlineMath:[['$','$']]}});</script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> Latex Source For example this is a Block level $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}$$ formula, and this is an inline Level $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$...
Read More

amazon lightsail 잠깐 사용기

개발용 jira, confluence를 설치해서 사용하는 EC2가 메모리가 여유롭지 않아 amazon lightsail로 이전을 테스트 했다.VPS이지만 예측 가능한 가격과 저렴한 데이타 전송 요금이 매력적이다. (Update) 메모리 부족 문제인지, virginia region 으로 네트웍 문제인지, 아니면 VPS hosting 특성인지, SSH 접속이 안 될 정도로...
Read More

atlassian jira, conflunce를 docker를 이용하여 설치

Ubuntu 16.04.01(Xenial) LTS에 docker를 이용하여 atlassian jira, confluence 설치하기 Docker Install 참고문서 Pre-requisite $ uname -r 4.4.0-45-generic $ sudo apt-get update $ sudo apt-get install apt-transport-https ca-certificates $ sudo apt-key adv \ --keyserver hkp://ha.pool.sks-keyservers.net:80 \ --recv-keys 58118E89F3A912897C070ADBF76221572C52609D $ sudo echo...
Read More

SublimeText 에디터에서 여러 개의 파일 되돌리기

sublime text에서 find & replace로 다 수의 파일을 업데이트 한 후, 파일을 저장하고 싶지 않는 경우… 창을 닫은 경우, 파일을 저장할 것인지 물어보는 창이 뜨고, Dont Save 버튼을 누르는 것이 불가능할 때… 앱을 kill 했다가 다시 띄운 경우에도 열었던 파일을...
Read More

Jekyll에서 liquid warning 처리

Jekyll에서 liquid warning 처리하는 방법 Jekyll 에서 사용되는 liquid가 {{와 }}를 escape 문자로 사용합니다. 문서에 {{, }} 가 들어 있는 경우 jekyll engine이 경고 메시지를 출력하고, {{ … }} 사이에 있는 내용은 무시됩니다. 문서에는 x-success={{drafts://}} 라는 문장이 들어 있습니다. Liquid...
Read More

jekyll now template

Jekyll의 template를 minimal mistake에서 jekyll now로 다시 변경했다. 기존 template에서는 preview 확인하는데 10여초가 걸리고 limit_posts option이 동작하지 않아, 예전에 사용했던 jekyll now에 한량넷에 적용된 기능(pagination, tags, search)을 추가하였다. Jekyll now에서는 1초 내로 preview를 확인할 수 있다. disqus 댓글 활용도가 낮아서...
Read More

Jekyll에 bigfoot plugin 적용

bigfoot은 각주를 팝오버 창으로 띄워 문서의 아래로 내려가지 않고서도 내용을 확인할 수 있게 하는 jQuery plugin이다. 참고 : http://www.halryang.net/Bigfoot-footnotes-in-Jekyll/ minimal mistake theme에 bigfoot 적용 Download bigfoot1 cp dist/bigfoot.min.js assets/js/plugins/bigfoot.min.js cp dist/bigfoot-default.scss _sass/_bigfoot-default.scss add bigfoots configuration in _include/scripts.html <script type="text/javascript"> var...
Read More