diff --git a/.github/workflows/docs-markdown.yml b/.github/workflows/docs-markdown.yml
new file mode 100644
index 0000000..c7f7043
--- /dev/null
+++ b/.github/workflows/docs-markdown.yml
@@ -0,0 +1,34 @@
+name: Build Documentation from Markdown
+run-name: ${{ GITHUB.ACTOR }} is generating a Documentation from Markdown 🚀
+on:
+ workflow_dispatch:
+ push:
+ branches:
+ - main
+ paths:
+ - ".github/workflows/docs-markdown.yml"
+ - "docs/**"
+jobs:
+ build_markdown_documentation:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Set up Git repository
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Generate HTML from Markdown
+ uses: ldeluigi/markdown-docs@latest
+ with:
+ src: docs/
+ dst: ./gh-pages
+ title: Markdown Docs
+ language: de
+ icon: library
+ primary-color: indigo
+ secondary-color: indigo
+ hide-repository: false
+ - name: Deploy GitHub Pages
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ publish_dir: ./gh-pages
+ github_token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e69de29
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/algodat-java-intro.iml b/.idea/algodat-java-intro.iml
new file mode 100644
index 0000000..cf572d5
--- /dev/null
+++ b/.idea/algodat-java-intro.iml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..a55e7a1
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..c3dfb30
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..beb7ffe
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 0000000..feaba16
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,9 @@
+# Crashkurs Java im Modul Algorithmen und Datenstrukturen
+
+```java
+public class Main {
+ public static void main(String[] args) {
+ System.out.println("Die Seite ist noch leer");
+ }
+}
+```
\ No newline at end of file