forked from Consensys/smart-contract-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
50 lines (47 loc) · 1.64 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
# Refer to https://github.com/mkdocs/mkdocs/blob/master/mkdocs.yml for a working example
site_name: Ethereum Smart Contract Best Practices
site_url: https://github.com/ConsenSys/smart-contract-best-practices
site_description:
site_author: ConsenSys
repo_url: https://github.com/ConsenSys/smart-contract-best-practices
pages:
- Home: index.md
- General Philosophy: general_philosophy.md
- Recommendations for Smart Contract Security in Solidity: recommendations.md
- Known Attacks: known_attacks.md
- Software Engineering Techniques: software_engineering.md
- Token specific recommendations: tokens.md
- Documentation and Procedures: documentation_procedures.md
- Security Tools: security_tools.md
- Security Notifications: security_notifications.md
- Future improvements: future_improvements.md
- Smart Contract Security Bibliography: bibliography.md
- List of Smart Contract Bug Bounty Programs: bug_bounty_list.md
- About:
- Reviewers: about/reviewers.md
- License: about/license.md
- Contributing: about/contributing.md
theme:
name: 'material'
custom_dir: 'theme'
extra_css:
- 'stylesheets/extra.css'
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc(permalink=true)
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde