diff --git a/docs/Services/pole-scientifique/Commandes de mises en forme mkdoc.txt b/docs/Services/pole-scientifique/Commandes de mises en forme mkdoc.txt new file mode 100644 index 0000000..d845528 --- /dev/null +++ b/docs/Services/pole-scientifique/Commandes de mises en forme mkdoc.txt @@ -0,0 +1,31 @@ +Centrer le texte:
Votre texte centré
+Centrer votre image:
![Texte alternatif de l'image](chemin/vers/votre/image.jpg)
+Titre texte: # votre texte ou ## votre texte ### votre texte +Texte vers hyperlien: [ton texte](https://lien.com) +Colerer un texte: votre texte +Insérer une image: ![Screenshot](img/image2.png) +Texte en gras: **Texte** +Ajouter un bout de code avec le titre d'un script: +``` py title="monscript.sh" +Echo “Hello World” > work/hello-onyxia.txt +``` +Ajouter un bout de code simple sur une ligne: `` mon code `` +Ajouter un bout de code faisant plusieurs ligne: +``` +votre code +``` + + + + + + + + + + +[]() + +
+ + diff --git a/docs/Services/pole-scientifique/mkdocs.yml b/docs/Services/pole-scientifique/mkdocs.yml new file mode 100644 index 0000000..7e707c0 --- /dev/null +++ b/docs/Services/pole-scientifique/mkdocs.yml @@ -0,0 +1,61 @@ +site_name: Datalab Onyxia du Genes + +theme: + name: material + features: + - navigation.tabs + - navigation.sections + - toc.integrate + - navigation.top + - search.suggest + - search.highlight + - content.tabs.link + - content.code.annotation + - content.code.copy + language: en + palette: + - scheme: default + toggle: + icon: material/toggle-switch-off-outline + name: Switch to dark mode + primary: teal + accent: purple + - scheme: slate + toggle: + icon: material/toggle-switch + name: Switch to light mode + primary: teal + accent: lime + + +plugins: + - search + +nav: + - Introduction: "index.md" + - A propos de: "pages/about.md" + - Guide d'utilisation: "guide.md" + - FAQ: "pages/faq.md" + +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + - pymdownx.inlinehilite + - pymdownx.snippets + - admonition + - pymdownx.arithmatex: + generic: true + - footnotes + - pymdownx.details + - pymdownx.superfences + - pymdownx.mark + - attr_list + - pymdownx.emoji: + emoji_index: !!python/name:materialx.emoji.twemoji + emoji_generator: !!python/name:materialx.emoji.to_svg + - pymdownx.critic + - pymdownx.caret + - pymdownx.keys + - pymdownx.mark + - pymdownx.tilde + - attr_list \ No newline at end of file