luminus-framework / luminus

documentation site for Luminus framework
http://www.luminusweb.net/
629 stars 121 forks source link

"Docsumentation" indexed by Google #199

Closed jmmk closed 6 years ago

jmmk commented 6 years ago

On the front page (http://www.luminusweb.net/), there is the following markup:

<a href="/docs">
    Doc
    <span class="show-on-mobile">s</span>
    <span class="hide-on-mobile">umentation</span>
</a>

It looks like Google indexes this as Docsumentation, as seen here:

luminus-docsumentation
yogthos commented 6 years ago

heh not sure what can be done there, the reason for the markup is to shrink the title to Doc on small screens.

jrad87 commented 6 years ago

This should work

<a href="/docs">
    <span class="show-on-mobile">Docs</span>
    <span class="hide-on-mobile">Documentation</span>
</a>
yogthos commented 6 years ago

Ah yeah that did the trick, thanks!