-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
executable file
·91 lines (81 loc) · 2.2 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
site_name: TP Urbanisation des Systèmes d'Information
site_description: Les Travaux Pratiques du cours Urbanisation des Systèmes d'Information
site_author: Lilia Sfaxi
site_url: http://INSATunisia.github.io/TP-Urbanisation/
# Repository
repo_name: INSATunisia/TP-Urbanisation
repo_url: https://github.com/INSATunisia/TP-Urbanisation
# Copyright
copyright: 'Copyright © 2023 Lilia Sfaxi'
# Theme directory
plugins:
- search
- autolink_references:
autolinks:
- reference_prefix: AF-
target_url: https://linear.com/AF-<num>
- reference_prefix: PROJ-
target_url: https://jiracloud.com/PROJ-<num>
- git-revision-date-localized:
type: timeago
- minify:
minify_html: true
markdown_extensions:
- footnotes
- admonition
- meta
- toc:
permalink: true
baselevel: 2
- 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.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
theme:
name: material
favicon: img/favicon.ico
logo: "img/logo.png"
font:
text: 'Questrial'
code: 'Source Code Pro'
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
accent: amber
primary: amber
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
accent: amber
primary: amber
extra_css:
- 'stylesheets/extra.css'
- 'stylesheets/links.css'
- 'stylesheets/custom.css'
# Page tree
pages:
- 'index.md'
- Projet: 'projet.md'
- TP1 - Services Web SOAP avec Mule ESB: 'tp1.md'
- TP2 - REST API Management avec Anypoint Studio: 'tp2.md'
- TP3 - Orchestration de Services avec Camunda: 'tp3.md'
- TP4 - Intégration BPM et ESB: 'tp4.md'