Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi Richard,
in the SEO Checker you have a preview snippet of the SERP result.
However the keyword is not set to bold in the url like in the meta description.
For example:
Keyword:
umbraco tutorials
Url:
http://www.example.be/umbraco-tutorials/
This is not set to bold because in your parseText function you haven't added the '-' and '/' delimiters.
parseText
$scope.parseText = function (val) { var arr = []; var tmp = []; var chars = [' ', '\'', '"', ',', '.', ':', ';']; for (var i = 0; i < val.length; i++) { if (chars.indexOf(val[i]) >= 0) { arr.push(tmp.join('')); arr.push(val[i]); tmp = []; } else { tmp.push(val[i]); } } arr.push(tmp.join('')); return arr; };
After adding these into the array you get the keywords in bold in the url.
/Michaël
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Add delimiters for the url
Hi Richard,
in the SEO Checker you have a preview snippet of the SERP result.
However the keyword is not set to bold in the url like in the meta description.
For example:
Keyword:
umbraco tutorials
Url:
http://www.example.be/umbraco-tutorials/
This is not set to bold because in your
parseText
function you haven't added the '-' and '/' delimiters.After adding these into the array you get the keywords in bold in the url.
/Michaël
is working on a reply...