Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does adding meta tags in a GitHub README make it more searchable

If I use <meta> tags like keywords and description in a GitHub README.md file will it make the repo more SEO friendly?

like image 727
Brannon Avatar asked Sep 10 '13 02:09

Brannon


2 Answers

Browser engine doesn't need any meta tags to works. @n1trux recommand me to use this for awesome-regex :

<!--
  Title: Awesome Regex
  Description: A curated list of amazingly awesome regex resources.
  Author: aloisdg
  -->

You can see it on the raw README.md.

@n1trux full message :

In my awesome-sysadmin repo, I did it like this:

<!--
  Title: Awesome Sysadmin
  Description: A curated list of amazingly awesome open source sysadmin resources.
  Author: n1trux
  -->

Which is essentially an HTML comment. You could also just use real meta tags like so:

<meta name='keywords' content='regex, regular expressions, regexp'>

If you include that in the header, it won't be shown.

source

like image 105
aloisdg Avatar answered Sep 19 '22 12:09

aloisdg


Not that I know of (GitHub support should be able to confirm or refute it).

Even projects about meta and SEO (seo_meta, meta-tags, ...) don't add <meta> in their README.md.
You find them mentioned in this documentation, but it is for a separate CMS: forkcms (nothing to do with GitHub pages).

like image 28
VonC Avatar answered Sep 17 '22 12:09

VonC