Im wondering if there's any way to add "rel=nofollow" to the links created by the will_paginate gem in rails?
|
feedback
|
|
You need create your own LinkRenderer and use it
In your view :
| |||
|
feedback
|
|
I find that overriding page_number does not work (and also wont take care of your next and back links). Instead, I override rel_value:
Add this class to lib, and in your view:
| |||
|
feedback
|