diff --git a/.gitea/workflows/markdown-lint.yml b/.gitea/workflows/markdown-lint.yml new file mode 100644 index 0000000..44a69d7 --- /dev/null +++ b/.gitea/workflows/markdown-lint.yml @@ -0,0 +1,35 @@ +name: Markdown Validation + +on: + push: + branches: [main] + pull_request: + types: [opened, reopened, synchronize] + +jobs: + amd64: + runs-on: [ ubuntu-24.04, amd64-builder ] + steps: + - name: System Info + run: uname -m + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Checkout + uses: actions/checkout@v4 + + - name: Install markdownlint-cli + run: | + npm ci || npm install + npm i -D markdownlint-cli + + - name: Run markdownlint + # The glob pattern finds all markdown files recursively. + # Adjust if you store docs elsewhere (e.g., docs/**/*.md). + run: | + npx markdownlint "**/*.md" \ + --ignore node_modules \ + --config .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..82fb955 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,8 @@ +{ + "default": true, + + // Example customisations – adjust or delete as needed + "MD013": { "line_length": 120 }, // max line length (set higher if you prefer) + "MD041": false, // allow first line not to be a top‑level heading + "MD033": false // allow inline HTML (useful for Gollum embeds) +} diff --git a/CAD/Home.md b/CAD/Home.md deleted file mode 100644 index bedc88b..0000000 --- a/CAD/Home.md +++ /dev/null @@ -1,13 +0,0 @@ -# My CAD creations: - -## Launch Stand - -[[Launch-Stand/PXL_20240810_001912378.jpg|frame, alt=Pixel Slate in the stand.]] - -Pixel Slate in the stand. - -[[Launch-Stand/PXL_20250312_144342646.jpg|frame, System76 Lemur Pro in the stand.]] - -System76 Lemur Pro in the stand. - -[Source](https://git.ahoneybun.net/ahoneybun/Random-CAD/src/branch/main/Launch-Stand) diff --git a/CAD/Launch-Stand/PXL_20240719_155224020.jpg b/CAD/Launch-Stand/PXL_20240719_155224020.jpg deleted file mode 100644 index f60c62c..0000000 Binary files a/CAD/Launch-Stand/PXL_20240719_155224020.jpg and /dev/null differ diff --git a/CAD/Launch-Stand/PXL_20240719_203101193.MP.jpg b/CAD/Launch-Stand/PXL_20240719_203101193.MP.jpg deleted file mode 100644 index 8b2676a..0000000 Binary files a/CAD/Launch-Stand/PXL_20240719_203101193.MP.jpg and /dev/null differ diff --git a/CAD/Launch-Stand/PXL_20240810_001912378.jpg b/CAD/Launch-Stand/PXL_20240810_001912378.jpg deleted file mode 100644 index 33def88..0000000 Binary files a/CAD/Launch-Stand/PXL_20240810_001912378.jpg and /dev/null differ diff --git a/CAD/Launch-Stand/PXL_20250312_144342646.jpg b/CAD/Launch-Stand/PXL_20250312_144342646.jpg deleted file mode 100644 index 4fb24fb..0000000 Binary files a/CAD/Launch-Stand/PXL_20250312_144342646.jpg and /dev/null differ diff --git a/CAD/Launch-Stand/PXL_20260307_003518585.jpg b/CAD/Launch-Stand/PXL_20260307_003518585.jpg deleted file mode 100644 index ec8c5f3..0000000 Binary files a/CAD/Launch-Stand/PXL_20260307_003518585.jpg and /dev/null differ diff --git a/Home.md b/Home.md index 1a5f014..26f1a81 100644 --- a/Home.md +++ b/Home.md @@ -1,3 +1,5 @@ ## Welcome to my Wiki! This will contain various information that I have gathered or learned over time with mainly Linux topics. + +- [Linux](/Linux/Home) diff --git a/Linux/Home.md b/Linux/Home.md index 4bee5ac..404e7e0 100644 --- a/Linux/Home.md +++ b/Linux/Home.md @@ -1,8 +1,10 @@ +## Linux Page + Linux topics. -- [systemd Tips & Tricks](/Linux/systemd-tips-and-tricks) -- [Ubuntu Notes](/Linux/ubuntu-notes) -- [Arch Notes](/Linux/arch-notes) -- [Wayland & X11 Notes](/Linux/Wayland-and-X11) -- [nix Tips & Tricks](/Linux/nix-tips-and-tricks) -- [Pine64 Notes](/Linux/pine64-notes) +- [systemd Tips & Tricks](/systemd-tips-and-tricks) +- [Ubuntu Notes](/ubuntu-notes) +- [Arch Notes](/arch-notes) +- [Wayland & X11 Notes](/Wayland-and-X11) +- [nix Tips & Tricks](/nix-tips-and-tricks) +- [Pine64 Notes](/pine64-notes) diff --git a/Linux/nix-tips-and-tricks.md b/Linux/nix-tips-and-tricks.md index 179699e..73270c2 100644 --- a/Linux/nix-tips-and-tricks.md +++ b/Linux/nix-tips-and-tricks.md @@ -1,5 +1,3 @@ -[[_TOC_]] - # Nix Package Manager ## Add packages diff --git a/_Sidebar.md b/_Sidebar.md deleted file mode 100644 index 5fd937d..0000000 --- a/_Sidebar.md +++ /dev/null @@ -1,9 +0,0 @@ -# Wiki Pages - -[Home](/Home) - -## Documentation -- [Linux](/Linux/Home) - -## CAD -- [CAD](/CAD/Home)