Files
sLogos/.gitignore
sHa fc172cfa36 Add SVG cleanup utility for worldmap.svg
This commit introduces a new script, cleanup_worldmap.py, which provides a utility for cleaning and normalizing the SVG file worldmap.svg. The script performs various transformations including:

- Normalizing path tags and attributes
- Adding data-iso attributes based on a provided JSON mapping
- Pretty-printing the SVG output
- Creating a backup before overwriting the original file when using the --in-place option

The script is designed for ease of use with command-line arguments and includes error handling for XML validation.
2025-09-01 02:07:34 +03:00

65 lines
876 B
Plaintext

# Node.js dependencies
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log
yarn.lock
# Build output
public/build/
public/pwa-files-to-cache.json
# macOS specific files
.DS_Store
.AppleDouble
.LSOverride
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Docker related
.docker/
*.log
# Editor directories and files
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Backup files
*.bak
*.bak.*
*.tmp
# Svelte related
.svelte-kit/
# Environment variables
.env
.env.local
.env.development
.env.test
.env.production
# Make favicon generation script executable
chmod +x ./scripts/generate-favicons.js
chmod +x ./scripts/update-data.js
chmod +x ./scripts/*