Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I include a <meta generator> tag?

Suppose I have some sort of proprietary web framework. Should I include a <meta generator="My framework"> tag in the generated files?

I noticed that StackExchange 0.9 applications do that, and wondered what are the pros/cons of doing it. Does it have any effect, or is it just useful for people looking at the source to see?

like image 621
configurator Avatar asked Sep 03 '10 00:09

configurator


People also ask

Are meta tags necessary?

Meta tags are important because they impact how your site appears in the SERPs and how many people will be inclined to click through to your website. They will therefore impact your traffic and engagement rates, which can impact your SEO and rankings. Meta tags are an important part of a solid SEO strategy.

What is generator meta tag?

Meta tags are HTML tag content that provide metadata about your website such as description. Meta tags are used by search engines to help index and to provide relevant content in their search results. Site Title. Site Description.

Are meta keywords still relevant 2021?

Meta-keywords were too easy to spam with and almost all major search engines (Google, Yahoo, Bing) have discontinued support for this meta-tag. They don't consider it a ranking signal anymore, so it doesn't influence their SERPs anymore. Even SEO tools like Yoast have discontinued their usage.


2 Answers

I've never seen a tag formatted like that before, with an attribute called generator and the generating software as its value. Usually you'll see it presented as name="generator" and the generating software as its corresponding content, for example:

<meta name="generator" content="WordPress 3.0.1" /> <!-- leave this for stats --> 

Previously I was unaware of any standard for this, however it looks like HTML5 has gone ahead and standardized the use of "generator" as a metadata name. It describes it thus:

The value must be a free-form string that identifies one of the software packages used to generate the document. This value must not be used on pages whose markup is not generated by software, e.g. pages whose markup was written by a user in a text editor.

In the past when dynamic web apps weren't that prevalent, certain web site editors, like FrontPage (there, I said it), would automatically insert generator tags when you create new HTML documents or publish sites using them. This was taken to mean "This page was created using FrontPage". I don't think any modern editors or IDEs do this anymore, but I could be wrong. It's definitely commonly used in dynamic web apps today, however.

like image 100
BoltClock Avatar answered Oct 02 '22 12:10

BoltClock


A benefit (or a con?) is that you can show up in searches done for generator.

like image 28
Jay Avatar answered Oct 02 '22 11:10

Jay