Trying to add multi language
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 5s
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 5s
This commit is contained in:
2
docs/de/projects/index.md
Normal file
2
docs/de/projects/index.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# Welcome to Noah's control room.
|
||||
# DE
|
||||
2
docs/en/projects/index.md
Normal file
2
docs/en/projects/index.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# Welcome to Noah's control room.
|
||||
# EN
|
||||
1
docs/en/projects/lerndoku-template/docs/index.md
Normal file
1
docs/en/projects/lerndoku-template/docs/index.md
Normal file
@@ -0,0 +1 @@
|
||||
# Welcome to Lerndoku Template
|
||||
4
docs/en/projects/lerndoku-template/getting-started.md
Normal file
4
docs/en/projects/lerndoku-template/getting-started.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Getting Started
|
||||
|
||||
You can add more guides by placing more `.md` files in the `guides/` folder and extending the `nav` section in `mkdocs.yml`.
|
||||
|
||||
4
docs/en/projects/lerndoku-template/guides/git.md
Normal file
4
docs/en/projects/lerndoku-template/guides/git.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# GIT
|
||||
|
||||
### What is git
|
||||
### Commands
|
||||
66
docs/en/projects/lerndoku-template/guides/markdown.md
Normal file
66
docs/en/projects/lerndoku-template/guides/markdown.md
Normal file
@@ -0,0 +1,66 @@
|
||||
# Markdown Overview
|
||||
|
||||
This page gives you a quick overview of the most common Markdown syntax used in MkDocs.
|
||||
|
||||
---
|
||||
|
||||
### Headings
|
||||
|
||||
```
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
```
|
||||
|
||||
### Text Formatting
|
||||
```
|
||||
**bold**
|
||||
*italic*
|
||||
~~strikethrough~~
|
||||
`inline code`
|
||||
```
|
||||
## Lists
|
||||
### Unordered
|
||||
```
|
||||
- Item 1
|
||||
- Item 2
|
||||
- Subitem
|
||||
```
|
||||
### Ordered
|
||||
```
|
||||
1. First
|
||||
2. Second
|
||||
3. Third
|
||||
```
|
||||
### Code Blocks
|
||||
```
|
||||
<pre> ```bash echo "Hello" ``` </pre>
|
||||
```
|
||||
### Links & Images
|
||||
```
|
||||
[Link text](https://example.com)
|
||||
|
||||

|
||||
```
|
||||
### Blockquotes
|
||||
```
|
||||
> This is a quote.
|
||||
```
|
||||
### Tables
|
||||
```
|
||||
| Column A | Column B |
|
||||
|----------|----------|
|
||||
| Value 1 | Value 2 |
|
||||
```
|
||||
### Horizontal Rule
|
||||
```---```
|
||||
|
||||
### Admonitions
|
||||
```
|
||||
!!! note
|
||||
This is a note.
|
||||
```
|
||||
|
||||
### More
|
||||
|
||||
``` For full syntax see: https://www.markdownguide.org/ ```
|
||||
9
docs/en/projects/lerndoku-template/mkdocs.yml
Normal file
9
docs/en/projects/lerndoku-template/mkdocs.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
site_name: Lehrlingsdoku
|
||||
site_url: https://pombas_n.pages.psi.ch
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Getting Started: getting-started.md
|
||||
- Guides:
|
||||
- Example Guide: guides/git.md
|
||||
- Markdown Guide: guides/markdown.md
|
||||
1
docs/en/projects/servicenow/docs/index.md
Normal file
1
docs/en/projects/servicenow/docs/index.md
Normal file
@@ -0,0 +1 @@
|
||||
# Welcome to ServiceNow docs
|
||||
4
docs/en/projects/servicenow/getting-started.md
Normal file
4
docs/en/projects/servicenow/getting-started.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Getting Started
|
||||
|
||||
You can add more guides by placing more `.md` files in the `guides/` folder and extending the `nav` section in `mkdocs.yml`.
|
||||
|
||||
4
docs/en/projects/servicenow/guides/git.md
Normal file
4
docs/en/projects/servicenow/guides/git.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# GIT
|
||||
|
||||
### What is git
|
||||
### Commands
|
||||
66
docs/en/projects/servicenow/guides/markdown.md
Normal file
66
docs/en/projects/servicenow/guides/markdown.md
Normal file
@@ -0,0 +1,66 @@
|
||||
# Markdown Overview
|
||||
|
||||
This page gives you a quick overview of the most common Markdown syntax used in MkDocs.
|
||||
|
||||
---
|
||||
|
||||
### Headings
|
||||
|
||||
```
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
```
|
||||
|
||||
### Text Formatting
|
||||
```
|
||||
**bold**
|
||||
*italic*
|
||||
~~strikethrough~~
|
||||
`inline code`
|
||||
```
|
||||
## Lists
|
||||
### Unordered
|
||||
```
|
||||
- Item 1
|
||||
- Item 2
|
||||
- Subitem
|
||||
```
|
||||
### Ordered
|
||||
```
|
||||
1. First
|
||||
2. Second
|
||||
3. Third
|
||||
```
|
||||
### Code Blocks
|
||||
```
|
||||
<pre> ```bash echo "Hello" ``` </pre>
|
||||
```
|
||||
### Links & Images
|
||||
```
|
||||
[Link text](https://example.com)
|
||||
|
||||

|
||||
```
|
||||
### Blockquotes
|
||||
```
|
||||
> This is a quote.
|
||||
```
|
||||
### Tables
|
||||
```
|
||||
| Column A | Column B |
|
||||
|----------|----------|
|
||||
| Value 1 | Value 2 |
|
||||
```
|
||||
### Horizontal Rule
|
||||
```---```
|
||||
|
||||
### Admonitions
|
||||
```
|
||||
!!! note
|
||||
This is a note.
|
||||
```
|
||||
|
||||
### More
|
||||
|
||||
``` For full syntax see: https://www.markdownguide.org/ ```
|
||||
9
docs/en/projects/servicenow/mkdocs.yml
Normal file
9
docs/en/projects/servicenow/mkdocs.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
site_name: Lehrlingsdoku
|
||||
site_url: https://pombas_n.pages.psi.ch
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Getting Started: getting-started.md
|
||||
- Guides:
|
||||
- Example Guide: guides/git.md
|
||||
- Markdown Guide: guides/markdown.md
|
||||
@@ -1 +1,2 @@
|
||||
# Welcome to Noah's control room.
|
||||
# Welcome to Noah's control room.
|
||||
# no lang
|
||||
16
mkdocs.yml
16
mkdocs.yml
@@ -47,8 +47,22 @@ extra_css:
|
||||
extra_javascript:
|
||||
- assets/javascripts/color-toggle.js
|
||||
|
||||
extra:
|
||||
alternate:
|
||||
- name: English
|
||||
link: /en/
|
||||
lang: en
|
||||
- name: Deutsch
|
||||
link: /de/
|
||||
lang: de
|
||||
|
||||
plugins:
|
||||
- projects:
|
||||
projects: true
|
||||
enabled: true
|
||||
projects_dir: projects
|
||||
projects_config_files: "**/mkdocs.yml"
|
||||
- search:
|
||||
enabled: true
|
||||
lang:
|
||||
- en
|
||||
- de
|
||||
|
||||
Reference in New Issue
Block a user