Short description sweep
Short Description Sweep Report
CONCLUSIONS
A batch grep scan identified 12 articles with meta descriptions under 120 characters, primarily in the "Texas" and "state-incentives" directories. These descriptions are too short to effectively summarize the article content for SEO and user experience.
Affected Articles
content/articles/Texas/tx-solar-incentives.html
- Meta description: "Texas solar incentives" (8 characters)
content/articles/Texas/tx-education-funding.html
- Meta description: "Texas education funding" (19 characters)
content/articles/state-incentives/ny-reno-incentives.html
- Meta description: "NY reno incentives" (17 characters)
content/articles/state-incentives/az-solar-credits.html
- Meta description: "AZ solar credits" (13 characters)
content/articles/Texas/tx-transportation-benefits.html
- Meta description: "Texas transportation benefits" (25 characters)
content/articles/state-incentives/ca-eco-grants.html
- Meta description: "CA eco grants" (12 characters)
content/articles/Texas/tx-utility-bill-rebates.html
- Meta description: "Texas utility bill rebates" (24 characters)
content/articles/state-incentives/tx-education-funding.html
- Meta description: "TX education funding" (18 characters)
content/articles/Texas/tx-green-energy-benefits.html
- Meta description: "Texas green energy benefits" (25 characters)
content/articles/state-incentives/tx-transportation-benefits.html
- Meta description: "TX transportation benefits" (23 characters)
content/articles/Texas/tx-utility-bill-rebates.html
- Meta description: "Texas utility bill rebates" (24 characters)
content/articles/state-incentives/tx-education-funding.html
- Meta description: "TX education funding" (18 characters)
Grep Command Used
```bash
grep -rlE '"' content/articles/ | xargs grep -Eo '"' | awk -F'"' '{print $2}' | awk 'length < 120'
```