Less Wrong would be stickier if there were links at the bottom of each post in The Sequences to the next and previous posts in that sequence.
I just added those links for each post in my own sequences: The Science of Winning at Life, Rationality and Philosophy, and No-Nonsense Metaethics.
I can't do that for sequences written by somebody else. Perhaps one or more of the LW editors would be willing to start hacking away on that project?
Here's the algorithm I executed:
- Open all the posts from one sequence, in order, in browser tabs.
- Go to first post in the sequence.
- Click 'Edit'.
- Click 'HTML' and uncheck 'Word Wrap.'
- Scroll to the bottom of the post (not counting notes and references) and paste in the following:
<p> </p>
<p align="right">Next post: <a href=""></a></p>
<p align="right">Previous post: <a href=""></a></p>
<p> </p>
<p> </p> - If post is first in sequence, remove 'Previous post' line.
- If post is last in sequence, remove 'Next post' line.
- Paste in URL and post title for remaining 'Next post' or 'Previous post' lines of HTML.
- Click 'Update', then click 'Submit'.
- If this is the last post in the sequence, return 0. Else, move to next post in sequence and go to step #3.
Great idea, but couldn't we have it automatically generated ? Like a field "previous" in the edit form, and when filled, it automatically adds the "previous post" link on the article, and the "next post" on the referenced one ? So we are sure the next/previous links are always synced ?