Fix html content detection regex to not include markdown autolinks (#3720)

This commit is contained in:
Zane
2025-07-30 09:40:12 -07:00
committed by GitHub
parent e5ac6412ec
commit f47836bbe8
8 changed files with 2845 additions and 35 deletions
+10 -1
View File
@@ -30,6 +30,10 @@
"lint:check": "npm run typecheck && eslint \"src/**/*.{ts,tsx}\" --max-warnings 0 --no-warn-ignored",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "cd ../.. && husky install",
"start-alpha-gui": "ALPHA=true npm run start-gui"
},
@@ -100,6 +104,9 @@
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/cors": "^2.8.17",
"@types/electron": "^1.4.38",
"@types/electron-squirrel-startup": "^1.0.2",
@@ -119,12 +126,14 @@
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.4.1",
"postcss": "^8.4.47",
"prettier": "^3.4.2",
"tailwindcss": "^4.1.10",
"typescript": "~5.5.0",
"vite": "^6.3.4"
"vite": "^6.3.4",
"vitest": "^2.1.8"
},
"keywords": [],
"license": "Apache-2.0",