docs.html 852 字节
Newer Older
C
chomik 已提交
1 2 3 4 5 6 7
---
layout: default
menu: docs
title: Documentation
---


C
chomik 已提交
8
<div class="row justify-content-center">
C
chomik 已提交
9
	<div class="col-lg-10">
C
chomik 已提交
10 11 12
		<div class="card">
			<div class="card-body p-lg-5">

C
chomik 已提交
13
				<div class="markdown">
C
chomik 已提交
14
					<h2 class="h1 mt-0 mb-4">{{ page.title }}</h2>
C
chomik 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

					{% if page.description %}
					<p>{{ page.description }}</p>
					{% endif %}

					{% if page.in_progress %}
					<div class="alert alert-primary mt-5 mb-6">
						<div><strong>Work in progress!</strong> More detailed documentation is coming soon.</div>
					</div>
					{% endif %}

					{% if page.toc %}
					{{ content | toc_only }}
					{% endif %}

					{{ content | toc_generate }}
				</div>
			</div>
		</div>
	</div>
</div>
C
chomik 已提交
36 37 38 39

<script>
   $(document).ready(function(){
      $('[data-toggle="tooltip"]').tooltip();
C
chomik 已提交
40
      $('[data-toggle="popover"]').popover();
C
chomik 已提交
41 42
   });
</script>