summaryrefslogtreecommitdiff
path: root/source/_layouts/concept.html
blob: 7a0849ce3c7d01b39c75b4895dfa32f9750d6ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: "default"
---

<p>
{% assign categories = page.categories | sort %}
Categories:
{% for category in categories %}
{% assign url = category | slugify %}
<a href="/know/category/{{ url }}">{{ category }}</a>{% if forloop.last == false %},{% endif %}{% endfor %}.
</p>

<h1>{{ page.title }}</h1>

{% capture markdown_after_katex %}
{% katexmm %}
{{ page.content }}
{% endkatexmm %}
{% endcapture %}

{{ markdown_after_katex | markdownify }}