Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2c48b31d22 | ||
|
|
782cc089a1 |
12 changed files with 53 additions and 30 deletions
35
.gitea/workflows/markdown-lint.yml
Normal file
35
.gitea/workflows/markdown-lint.yml
Normal file
|
|
@ -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
|
||||||
8
.markdownlint.json
Normal file
8
.markdownlint.json
Normal file
|
|
@ -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)
|
||||||
|
}
|
||||||
13
CAD/Home.md
13
CAD/Home.md
|
|
@ -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)
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.3 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.8 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.2 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 745 KiB |
2
Home.md
2
Home.md
|
|
@ -1,3 +1,5 @@
|
||||||
## Welcome to my Wiki!
|
## Welcome to my Wiki!
|
||||||
|
|
||||||
This will contain various information that I have gathered or learned over time with mainly Linux topics.
|
This will contain various information that I have gathered or learned over time with mainly Linux topics.
|
||||||
|
|
||||||
|
- [Linux](/Linux/Home)
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
|
## Linux Page
|
||||||
|
|
||||||
Linux topics.
|
Linux topics.
|
||||||
|
|
||||||
- [systemd Tips & Tricks](/Linux/systemd-tips-and-tricks)
|
- [systemd Tips & Tricks](/systemd-tips-and-tricks)
|
||||||
- [Ubuntu Notes](/Linux/ubuntu-notes)
|
- [Ubuntu Notes](/ubuntu-notes)
|
||||||
- [Arch Notes](/Linux/arch-notes)
|
- [Arch Notes](/arch-notes)
|
||||||
- [Wayland & X11 Notes](/Linux/Wayland-and-X11)
|
- [Wayland & X11 Notes](/Wayland-and-X11)
|
||||||
- [nix Tips & Tricks](/Linux/nix-tips-and-tricks)
|
- [nix Tips & Tricks](/nix-tips-and-tricks)
|
||||||
- [Pine64 Notes](/Linux/pine64-notes)
|
- [Pine64 Notes](/pine64-notes)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
[[_TOC_]]
|
|
||||||
|
|
||||||
# Nix Package Manager
|
# Nix Package Manager
|
||||||
|
|
||||||
## Add packages
|
## Add packages
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
# Wiki Pages
|
|
||||||
|
|
||||||
[Home](/Home)
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
- [Linux](/Linux/Home)
|
|
||||||
|
|
||||||
## CAD
|
|
||||||
- [CAD](/CAD/Home)
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue