So why are people still writing comments like they've never seen a link before?
Great post! And did you hear they're casting white actors for Akira? I know, right! I blogged about it here: http://www.adamheine.com/2011/03/dear-hollywood-asians-are-cool.htmlHow many people, do you think, will select that link, copy it, and paste it into their address bar so they can read your post? I'll give you a hint: the nearest integer rhymes with 'hero.'
Look, I know HTML is ugly and non-intuitive, but it's not hard either, and it'll make your comments a lot less ugly than that URL up there. Here's how it works.
We'll start with bold and italics, cuz they're easy. Whatever you want formatted gets stuck between a start tag and an end tag. For example: "I <b>love</b> cookie dough!" becomes "I love cookie dough!" Tags always look the same: angle brackets around the tag name (b for bold, i for italics, etc), and an extra '/' in the end tag.
I see your eyes glazing over. Stop it! This isn't hard, and you'll look smarter and get more clicks to your blog. Keep going!
Links work the same way: their tag pair is <a></a>, but you have to add an attribute to tell it where the link goes. That's what the ugly 'href' thing is about.*
Let's fix the comment above. In the comment box, I type this:
Great post! And did you hear <a href="http://www.adamheine.com/2011/03/dear-hollywood-asians-are-cool.html">they're casting white actors for Akira</a>? I know, right!It looks just as ugly as the first one, right? Except when the comment is posted, it'll look like this:
Great post! And did you hear they're casting white actors for Akira? I know, right!
There, was that so hard? Nearly every comment system allows these basic HTML tags. And look! One person actually clicked on the link. Now you can get that warm fuzzy feeling that comes every time your visitor stats go up.
Oh, you...you don't know how to check those either? Well, poop.
* If it helps, 'a' is short for anchor and 'href' stands for hyperlink reference. I'm sure it made lots of sense at the time.