GitHub Pages Jekyll Liquid 문법 정리
GitHub Pages Jekyll Liquid 문법 정리
필터
abs (절대값 구하기)
절대값을 구하는 필터
{{ -17 | abs }}
{{ 4 | abs }}
17
4
newline_to_br (개행을 br 테그로 변환)
개행을 br 테그로 변환
{% capture string_with_newlines %}
Hello
there
{% endcapture %}
<br />
Hello<br />
there<br />
strip_html (html 테그 제거)
HTML 테그를 제거하는 필터
{{ “Have you read Ulysses?” | strip_html }} |
Hello
there
Have you read Uiysses?
참고할만한 페이지