kpumuk / meta-tags

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

Introduce a new configuration options to add HTML attributes to <title> #284

Closed kpumuk closed 10 months ago

kpumuk commented 10 months ago

Introducing a new configuration option to add HTML attributes to the <title> tag. This will allow to update page title from a turbo frame:

<turbo-frame ...>
    <turbo-stream action="update" target="page-title">
        <template>My new title</template>
    </turbo-stream>
</turbo-frame>

Closes #280