summaryrefslogtreecommitdiff
path: root/source/_layouts/concept.html
blob: 1523168951a12ad8b07df7f89d2bc426cd0b404c (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 | smartify }}</a>{% if forloop.last == false %},{% endif %}{% endfor %}.
</p>

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

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

{{ content_after_katex | markdownify }}