thomq: That's one of the reasons I don't depend on my games library on the website for sorting. I put the names in a file ordered the way I like, in whatever groups I want, and as many times for a game as I desire. I slightly mark it up with HTML, for links and such.
I do appreciate there's a search field in the games library on the website, because it finds games instantly with each letter typed, wherever those letters might be in the name of a game. That's great for locating a game I've yet to download. Though, I get a similar search experience when I locate mention of a game within my document of notes, too, f.e. with a Find command in any editing application.
vidsgame: How do you go about marking it up? I've always been interested in using markup to take notes and sorting but I was always confused by the tags. I'm used to the tags here: [ u][ /u], [ b][ /b], ect. but sometimes the tags for text programs are different and have a slight learning curve but I'm still impressed by what they could do.
Since an HTML file is just a plain text, much like a forum post, I just start typing some text and eventually add HTML along the way. I stick to the basics:
• <p> for paragraph;
• <ul></ul> for unordered list with an <li> inside for each list item;
• <a href=""></a> for anchor, which is a link (like the url tag here in the forum).
Sometimes I feel like using h1, h2, h3, h4, h5, or h6 for headings, though I rarely go past h4.
Those basic HTML tags became more familiar to me after adding information about a few games with them. Keeping it basic has also helped. There are a lot more HTML tags in existence, but I don't need them. Paragraphs and lists are all I need for organizing, and some links for connecting to my other HTML files or some other websites. I typically use the headers h1, h2, and so forth instead of bold.
Only the headers, links, and lists
always need the end tag:
• <h1></h1>
• <a href=""></a>
• <ul></ul>
List items <li> don't need an end tag (but it is okay to add it) because they have to be within a <ul> tag anyway. Paragraphs <p> generally don't need an end tag, either, though it is okay to add it.
I use the editor's search (a.k.a. the Find command) to quickly jump to the game info in the file when I want to edit it, or maybe place another game after it. I'll probably first look at the file in a web browser, figure out what I want (probably with the Find command in the web browser), then go to the text editor and find it there. No need to scroll the text forever back and forth in the text editor trying to imagine what the HTML means, or for me to be intimately familiar with the layout. I can forget about it all, but still figure out where anything is quickly just by using the common search feature in whatever web browser or text editor.
So, that's pretty much how I go about using HTML and editing files for my games (and other notes, too). Though most of the time I'm just viewing it in a web browser (t.i. an HTML viewer) or clicking the links I've put in my notes.