Add missing classes to darkmode, add #repo-files-table and mising tags #3

Merged
Vulpovile merged 16 commits from feature/more_support into master 2025-01-11 22:29:52 +00:00
5 changed files with 119 additions and 42 deletions
Showing only changes of commit 10083bfe1b - Show all commits

4
Jenkinsfile vendored
View File

@@ -7,11 +7,11 @@ pipeline {
script { script {
// Check for spaces or mixed indentation // Check for spaces or mixed indentation
sh ''' sh '''
if grep -P "^[ ]+" -r path/to/your/css/files; then if grep -P "^[ ]+" -r ./**/*.css; then
echo "Error: Files contain spaces instead of tabs for indentation." echo "Error: Files contain spaces instead of tabs for indentation."
exit 1 exit 1
fi fi
if grep -P "^\\t+ +" -r path/to/your/css/files; then if grep -P "^\\t+ +" -r ./**/*.css; then
echo "Error: Files contain mixed tabs and spaces for indentation." echo "Error: Files contain mixed tabs and spaces for indentation."
exit 1 exit 1
fi fi