Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 0 additions & 117 deletions .github/lychee.toml

This file was deleted.

35 changes: 28 additions & 7 deletions .github/workflows/link_check.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,41 @@
# This action checks for broken links
name: Check Links
name: Check Markdown Links

on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
linkChecker:
lychee:
name: Link Checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout Codebase
uses: actions/checkout@v6
with:
persist-credentials: false

- name: 🔗 Check Links
uses: lycheeverse/lychee-action@v1
uses: lycheeverse/lychee-action@v2
with:
fail: true
args: --config .github/lychee.toml './docs/*.md'
args: >-
--user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
--exclude "https?://(www\.)?(twitter\.com|x\.com|instagram\.com|linkedin\.com)"
--threads 2
--max-redirects 10
--max-retries 2
--max-concurrency 14
--timeout 20
--retry-wait-time 2
--accept 200,429
--method get
"./docs/*.md"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30 changes: 30 additions & 0 deletions .github/workflows/link_check_live_doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Live broken link check

on:
push:
schedule:
- cron: '0 0 * * 0'

permissions:
contents: read

jobs:
crawl_for_broken_links:
runs-on: ubuntu-latest
name: Broken-Links-Crawler

permissions:
contents: read

steps:
- name: Checking links
uses: ScholliYT/Broken-Links-Crawler-Action@v3
with:
website_url: 'https://livewire-powergrid.com'
exclude_url_prefix: 'mailto:,data:,https://twitter.com,https://x.com'
verbose: 'true'
max_retry_time: 30
max_retries: 5
max_depth: -1
resolve_before_filtering: 'true'
exclude_url_suffix: 'apple-touch-icon.png,logomark2x.png,favicon.ico,favicon-32x32.png,favicon-16x16.png,site.webmanifest'
2 changes: 1 addition & 1 deletion docs/get-started/create-powergrid-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Here you will find:

## Introduction

Now that you've finished the PowerGrid [Essential Configuration](get-started/powergrid-configuration.html#essential-configuration), it's time create your very first Table Component!
Now that you've finished the PowerGrid [Essential Configuration](/get-started/powergrid-configuration.html#essential-configuration), it's time create your very first Table Component!

## Create a Table

Expand Down
2 changes: 1 addition & 1 deletion docs/table-component/component-columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Column::make('Dish name', 'name')

### visibleInExport()

Sometimes, you may want to hide and exclude a specific column when [Exporting Data](/table-component/table-data-export.html). This method gives you control whether the column will be included or not in the file containing the exported data.
Sometimes, you may want to hide and exclude a specific column when [Exporting Data](/table-features/exporting-data.html). This method gives you control whether the column will be included or not in the file containing the exported data.

| Parameter | Description |
|-----------------|------------------------------------------------------------------------------------|
Expand Down
Loading