It would be very nice to have a Documentation for the app.
My suggestion is to create a documentation as Markdown files in the root folder "doc".
Then it could be referenced directly as GitHub pages.
The structure for a multilanguage docu could be like that
/doc
├── index.md # Startseite (z. B. mit Sprachauswahl)
├── images
│ ├── logo.png
│ ├── p1.png
│ ├── p2.png
├── de
│ ├── index.md # Startseite Deutsch
│ ├── installation.md
│ ├── features.md
│ ├── troubleshooting.md
│ └── changelog.md
├── en
│ ├── index.md # Startseite Englisch
│ ├── installation.md
│ ├── features.md
│ ├── troubleshooting.md
│ └── changelog.md
└── fr
├── index.md # Startseite Französisch
├── installation.md
├── features.md
├── troubleshooting.md
└── changelog.md
It would be very nice to have a
Documentationfor the app.My suggestion is to create a documentation as
Markdownfiles in the root folder "doc".Then it could be referenced directly as
GitHub pages.The structure for a multilanguage docu could be like that