Skip to content

Commit

Permalink
Merge pull request #3 from prerender/feature/pre-643-documentation-li…
Browse files Browse the repository at this point in the history
…nks-to-be-added-in-cache-manager-seo-score

chore:new documentation links
  • Loading branch information
dekhtiaronchik authored Nov 30, 2023
2 parents 53d8a86 + c812e51 commit 57afd32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prerender-seo-scorer",
"version": "1.4.0",
"version": "1.5.0",
"description": "SEO Scoring from HTML, find and score SEO relevant tags, text, values.",
"keywords": [
"seo",
Expand Down Expand Up @@ -45,4 +45,4 @@
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}
}
2 changes: 1 addition & 1 deletion src/checks/img-alt.check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const check_img_alt: IChecker = ({ $, raw_html }: ICheckerContext) => {

recommendations.push({
description: 'Missing alt text on image(s)',
documentation: 'https://prerender.io/technical-seo-issues/',
documentation: 'https://docs.prerender.io/docs/picture-alt-text',
scoreDelta: penalty,
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/checks/meta-desc.check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const check_meta_desc: IChecker = ({ $, raw_html }: ICheckerContext) => {
// Add recommendation
recommendations.push({
description: 'Truncated meta description in SERPS',
documentation: 'https://prerender.io/technical-seo-issues/',
documentation: 'https://docs.prerender.io/v1/docs/meta-description',
scoreDelta: penalty,
});
}
Expand Down

0 comments on commit 57afd32

Please sign in to comment.