kpumuk / meta-tags

Search Engine Optimization (SEO) for Ruby on Rails applications.
MIT License
2.73k stars 275 forks source link

Change title format #70

Closed miguelpeniche closed 9 years ago

miguelpeniche commented 9 years ago

Is there a way to change title from

SITE_NAME | PAGE_NAME

To:

PAGE_NAME. SITE_NAME

miguelpeniche commented 9 years ago

This happens when you don't review the docs, i fixed it with:

<%= display_meta_tags site: SITE_NAME,
    description: DESC,
    keywords: %w(KEY1 KEY2 KEY3),
    reverse: true,
    prefix: false,
    separator: '.'
%>

The reverse, prefix and separator did the trick.