initial commit

This commit is contained in:
Adam Skotarczak 2025-07-20 18:19:37 +02:00
commit 0589cdf554
10 changed files with 247 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
# Custom
# Files
.gitkeep
treescanner.txt
logo.pdf
# Folders
#.vscode/**

65
.vscode/cspell.json vendored Normal file
View File

@ -0,0 +1,65 @@
{
"version": "0.2",
"language": "en,de",
"languageSettings": [
{
"languageId": "*",
"enabled": false
},
{
"languageId": "plaintext",
"enabled": true
},
{
"languageId": "markdown",
"enabled": true
},
{
"languageId": "asciidoc",
"enabled": true
}
],
"ignorePaths": [
"node_modules",
"dist",
"build",
"output",
".git"
],
"words": [
"abschranken",
"adoc",
"allpolig",
"arraybackslash",
"AsciiDoc",
"autochapter",
"Autorenrechtlich",
"Buildchain",
"Buildversion",
"Codesys",
"DGUV",
"Effizienzkritischen",
"Electrotech",
"Ethercat",
"Funkengefahr",
"gitcopy",
"kapitel",
"makefile",
"Neutralleiter",
"newpage",
"Pandoc",
"PDFTheme",
"Pneumatikventile",
"PNOZ",
"Printversion",
"raggedright",
"realAscot",
"Schottky",
"Skotarczak",
"Spenge",
"tabularx",
"textbf",
"textwidth",
"tocgen"
]
}

11
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-german",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-german",
"davidanson.vscode-markdownlint",
"yzane.markdown-pdf",
"yzhang.markdown-all-in-one"
]
}

8
.vscode/keybindings.json vendored Normal file
View File

@ -0,0 +1,8 @@
[
{
"key": "ctrl+alt+p",
"command": "workbench.action.tasks.runTask",
"args": "Markdown → PDF (Pandoc via WSL)",
"when": "editorLangId == markdown"
}
]

65
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,65 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.cSpell": "explicit"
},
"asciidoc.preview.style": "styles/preview.css",
"files.associations": {
"*.adoc": "asciidoc"
},
"files.eol": "\n",
"[yaml]": {
"files.eol": "\n"
},
"[shellscript]": {
"files.eol": "\n"
},
"[asciidoc]": {
"files.eol": "\n"
},
"files.encoding": "utf8",
"makefile.configureOnOpen": false,
"cSpell.language": "de,de-DE,en",
"cSpell.dictionaries": ["de_DE", "en"],
"cSpell.enabled": true,
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.renderWhitespace": "all",
},
"markdownlint.config": {
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
},
"markdown-pdf.puppeteerLaunchOptions": {
"args": ["--no-sandbox", "--disable-setuid-sandbox"]
},
"markdown-pdf.note": "Tastenkombi 'Ctrl+Alt+P' startet WSL-Build → PDF",
"cSpell.words": [
"Betriebsystem",
"Buildchain",
"Buildversion",
"CLI",
"epub",
"GitHub",
"LaTeX",
"Markdown",
"newpage",
"pandoc",
"Pandoc",
"Printversion",
"Projektinterne",
"reintext",
"Rust",
"Skotarczak",
"Texlive",
"UTF"
]
}

19
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Markdown → PDF (Pandoc via WSL)",
"type": "shell",
"command": "wsl make pdf",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "shared"
}
}
]
}

40
README.md Normal file
View File

@ -0,0 +1,40 @@
# QElectrotech [DE]
Alles zum Thema QElectroTech ...
![Buch-Logo](.media/logo.svg)
Sammlung von Unterlagen und Informationen zu QElectrotech.
---
## Informationen zu QElectrotech
- [x] **Offizielle Internetseite:**
- <https://qelectrotech.org/>
- [x] **GitHUB Mirror:**
- <https://github.com/qelectrotech/qelectrotech-source-mirror>
### Backups
- [x] [**Backup Dokumentation version 0.8 - build October 01, 2020 [EN]**](./dokumente/QElectroTechdoc-0.8.pdf)
Diese OFFIZIELLE Dokumentation in Englischer Sprache, ist im Internet schwer zu finden da sehr verschachtelt untergebracht.
Die Originalquelle ist unter <https://download.qelectrotech.org/qet/> zu finden.
---
## Submodule
- [x] **handbuch-QElectrotech**
- **ORIGIN:**
<https://local.ionivation.com/writer/handbuch-QElectroTech>
- **MIRROR:**
<GITHUB>
---
## Lizenz
**(C) 2025 - Adam Skotarczak**
---

1
VERSION Normal file
View File

@ -0,0 +1 @@
0.1.0.alpha-1.0

View File

@ -0,0 +1,8 @@
{
"elements": [
"html5"
],
"extends": [
"html-validate:recommended"
]
}

20
codesnippes/template.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Asteroid</title>
</head>
<body>
<p>
<script>
/* Programmbeschreibung:
*/
let appname = 'Asteroid'
</script>
<noscript>Kein JS aktiviert?</noscript>
</p>
<canvas id="canvas" width="600" height="200">
</canvas>
</body>
</html>