forked from ctf-wiki/ctf-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
78 lines (71 loc) · 1.62 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Project Information
site_name: CTF Tools
site_description: CTF 军火库
site_author: 40huo
site_url: https://ctf-wiki.github.io/ctf-tools/
# Repository
repo_name: 'ctf-wiki/ctf-tools'
repo_url: 'https://github.com/ctf-wiki/ctf-tools'
edit_uri: 'blob/master/docs/'
# Copyright
copyright: 'Copyright © 2016 - 2018 CTF Wiki Team'
# Contents
pages:
- CTF Tools:
- Getting started 开始使用: index.md
- Collections 工具合集: collections.md
- Environment 环境配置: environment.md
- Misc 杂项: misc.md
- Crypto 密码学: crypto.md
- Reverse 逆向工程: reverse.md
- Pwn 二进制漏洞挖掘: pwn.md
- Web 网站应用: web.md
- Papers 会议: papers.md
# Theme
theme:
name: 'material'
language: 'zh'
palette:
primary: 'white'
accent: 'red'
logo:
icon: 'school'
feature:
tabs: true
font:
text: 'Monda'
code: 'Fira Mono'
# Customization
extra:
search:
language: 'jp'
extra_javascript:
- 'js/extra.js'
- 'https://cdn.bootcss.com/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- def_list
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde