-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
104 lines (99 loc) · 2.73 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
site_name: Horse
site_description: Horse web framework, an Express inspired web framework for Delphi. Designed to ease things up for fast development in a minimalist way and with high performance.
repo_url: https://github.com/HashLoad/horse
edit_uri: ""
theme:
icon:
logo: material/horse
repo: fontawesome/brands/github
language: pt
# languages:
# - en: /en/
# - pt: /pt/
palette:
primary: deep orange
name: material
features:
- header.autohide
- search.seggest
- search.highlight
- contents.tabs.link
plugins:
- search
- i18n:
default_language: pt
languages:
en: English
pt: Português
nav_translations:
en:
section title: "Section"
subsection: "Subsection"
page title: "Page with title translated"
Guia: "Guide"
Introdução: "Introduction"
Recursos: "Resources"
Middlewares Oficiais: "Official Middlewares"
Middlewares no Horse: "Middlewares in Horse"
pt:
section title: "Seção"
subsection: "Subseção"
page title: "Página com título traduzido"
markdown_extensions:
- abbr
- attr_list
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
preserve_tabs: true
custom_fences:
# Mermaid diagrams
- name: mermaid
class: mermaid
- footnotes
extra:
alternate:
- link: ./en/
name: English
lang: en
- link: ./
name: Português
lang: pt
social:
- icon: fontawesome/brands/telegram
link: https://t.me/hashload
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/channel/UCl4IApn7H4mZ1V-nmNijL6A
- icon: fontawesome/brands/discord
link: https://discord.gg/VBBPhv6m
nav:
# - Languages:
# - en: /en/
# - pt: /pt/
- index.md
- Introdução:
- installation.md
- hello-world.md
- basic-routing.md
- Guia:
- "routing.md"
- Recursos:
- Middlewares:
- "middlewares/middlewares.md"
- Middlewares Oficiais:
- "middlewares/jhonson.md"
- "middlewares/basic-auth.md"
- "middlewares/horse-cors.md"
- "middlewares/octet-stream.md"
- "middlewares/horse-jwt.md"
- "middlewares/handle-exception.md"
- Horse Logger:
- "middlewares/horse-logger/how-to-use.md"
- Provedores:
- "middlewares/horse-logger/providers/console.md"
- "middlewares/horse-logger/providers/file.md"
- "middlewares/horse-compression.md"