ruby - How to create http-equiv="content-language" using metamagic? -


i using metamagic meta tags. want generate following line:

<meta http-equiv="content-language" content="en" /> 

using metamagic. how can create this?

i added gem files , working, , for:

<% meta owner: "xyz" %> 

i result:

<meta name='owner' content="xyz"/> 

given source code, not possible.

you can use tag instead:

tag 'meta', 'http-equiv' => 'content-language', 'content' => 'en' 

Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -