I’ve enjoyed working with the excellent WMD “what you see is what you mean” Markdown control while building Stack Overflow. I’ve been very pleasantly surprised how easy it is to type a smattering of concise Markdown and generate rather nice-looking content.

One of Markdown’s biggest advantages is its simplicity. Here’s a little Markdown test post I’ve been using that exercises the basic formatting options:

##Header##

----------

Some **bold** Some *italic* and [a link][1] 

A little code sample

    </head>
    <title>Web Page Title</title>
    </head>

A picture

![alt text][2]

A list

- apples
- oranges
- eggs

A numbered list

1. a
2. b
3. c

A little quote

> It is now time for all good men to come to the aid of their country. 

A final paragraph.

  [1]: http://www.google.com
  [2]: http://www.google.com/intl/en_ALL/images/logo.gif

However, I’ve also noticed there are a few edge cases where Markdown syntax can get weird and produce unexpected results.

I started to wonder if there were other edge conditions in advanced Markdown syntax I should know about. I figured John Fraser of AttackLab, the author of the WMD control, would be the best person to ask. He was kind enough to respond in some detail, and granted permission for me to repost his thoughts, where he outlines three gotchas to worry about when using Markdown:

1) Markdown’s single biggest flaw is its intra-word emphasis.

I don’t think anybody writes:

un*fricking*believable

often enough to justify making it nearly impossible to talk about tokens with underscores in them:

some_file_name

is interpreted as:

some<em>file</em>name

It even works across word boundaries:

file_one and file_two

becomes:

file<em>one and file</em> two

Whenever you’re writing tokens with underscores you have to make absolutely sure you’re in a `code span`. The same problem will also nail you on equations like a*b*c, but that seems to pop up less frequently.

Showdown follows the reference implementation on all this, but in WMD I do a little preprocessing to hack the idiocy away: basically I just backslash-escape any underscores or asterisks that might trigger it. It’s a flagrant violation of the standard, but since it’s a pre-pass that should produce identical output with any Markdown processor, I feel justified. Unfortunately my hack did screw up one edge case (which I don’t have in front of me) and there isn’t any way to disable it. Both those things will change in the next release.

2) List items only nest if they cross a magical four-character boundary.

So:

- level 1
  - level 2
    - level 3
      - level 4
        - level 5
          - level 6

is interpreted as:

- level 1
    - level 2
    - level 2
        - level 3
        - level 3
            - level 4

Which can be pretty surprising to humans. I’ve suggested an alternative algorithm a couple of times but it looks like neither of the big implementors is interested. (The mailing list’s HTML archive strips the whitespace from that first link; do “View Source” to make it make sense.)

3) Mixing HTML and Markdown has a couple of serious limitations.

You can put Markdown within inline elements:

<span>This *will* work.</span>

but not within block elements:

<div>
  This *won't* work.
</div>

I think this is a symptom of Markdown’s being designed for blog posts. You can paste in big chunks of foreign HTML verbatim without having to double-check them, but it’s pretty much impossible to write whole pages in Markdown. Again Gruber’s not interested; dunno about Fortin.

In my mind, this last one is huge. If we allowed Markdown within block-level HTML, we could write a non-lossy version of html2text and make my dream of Markdown as a transient editing format a reality.

Oh, also? The HTML parser is pretty broken, so what gets recognized as a complete block of HTML can sometimes be surprising. But Showdown uses an older, even-more-broken algorithm than the latest Markdown.pl beta, so I probably shouldn’t point fingers.

Remember, if you don’t like Markdown, you can always fall back to HTML — at least the whitelisted HTML. And if you’re curious about how any of this works I strongly encourage you to head over to the WMD advanced demo sandbox and try it out for yourself.

As I’ve mentioned before, we are using the most excellent WMD Markdown editor, for the reasons I outlined in that post.

However, Markdown, per the official spec, supports both HTML syntax and Markdown syntax. You can mix and match both syntaxes freely. This is great if you want to stick with HTML and not learn any of the Markdown syntax, something I’ve actually argued for in the past. However, I would also argue that Markdown is much less typing for the same effect, and it’s easier to read, so it’s worth learning. Markdown will save you time in the long run. Allowing HTML is great for flexibility and choice, but it’s perhaps too much of a good thing: you can use any HTML.

Try it yourself — visit the advanced WMD demo and just start keying in whatever kind of wacky HTML you can dream up. Go ahead. Try it.

This is bad.

Very, very bad.

The WMD control renders exactly the HTML you type, and submits it as-is to the server. Which means we, our webserver, our webpages, could be rendering javascript of unknown provenance.

That’s cross-site-scripting (XSS) in a nutshell.

In recent years XSS surpassed buffer overflows to become the most common of all publicly reported security vulnerabilities. [ed: the last time I wrote about this, in early 2007, buffer overflows were more common.] Likely at least 70% of websites are open to XSS attacks on their users. Site administrators rarely fix XSS problems and, when they do, the hole is likely to have been open for more than a month and a half. In general, cross-site scripting holes can be seen as vulnerabilities present in web pages which allow attackers to bypass security mechanisms. By finding clever ways of injecting malicious scripts into web pages, an attacker can gain elevated access privileges to sensitive page content, session cookies, and a variety of other objects.

Incredibly scary stuff. And it’s all due to insufficient sanitization of user input, where HTML, or some subset of HTML, is allowed. Check out some of the standard XSS exploits for examples of clever ways hackers can exploit the tiniest of oversights in your HTML input sanitizing. Think there’s just five or six ways to build an <a> or <img> tag? Think again. There are hundreds!

So that’s my challenge with the WMD editor. I have to write XSS-proof code to sanitize the HTML input on the server before I write it to the database.

I’d like your feedback on how best to do this. Here’s my general approach, in pseudocode form. Given a random HTML string..

  1. Run a regular expression to match all the HTML <tags> in the HTML string.
  2. For each individual tag match, verify that it passes our tag regular expression whitelist.
  3. If the tag match does not pass, remove the entire tag from the content.
  4. Repeat from step 2 until we’re out of tags.
  5. Return the sanitized HTML string.

Update: removed unnecessary extra code; all input is processed by the HTML sanitizer.

It’s slightly too much code to post here in a blog entry, so I have posted my C# SanitizeHtml routine on RefactorMyCode.com. Please take a look and let me know what you think. (scroll to the bottom, however, to see the latest “refactoring”.) Help me refactor my code, because I make shitty software, with bugs!

I’ve been itching for an excuse to link to RefactorMyCode for a while. It’s a great site for coders, and signing up to submit code is super easy through OpenID — no redundant account creation necessary!

Even if you have no interest whatsoever in my crappy SanitizeHtml function, I encourage you to visit RefactorMyCode and consider the value of many internet eyes on a snippet of your code.

We want Stack Overflow* users to be able to personalize their questions and answers with a small picture — even if they’ve never created an account on our site. Rather than build this functionality ourselves, we’ve decided to take advantage of Gravatars. Gravatars are small images associated with your email address.

I’ve used Gravatar for a while myself, and over time I’ve really grown to appreciate their approach:

  1. They’re global. They work across every website that supports gravatars. Sign up once, benefit everywhere.

  2. They’re easy. It’s totally straightforward; you simply build a URL that contains a hash of your email address (or IP address, if you didn’t provide email) add a few mostly optional preferences in the querystring, and that’s it.

  3. They’re safe. The Gravatar service vets the images so nothing, er.. disturbing.. shows up in your browser. You can specify whether you want a maximum rating of G, PG, R, or X for gravatars displayed on your site. We’re going with PG; I hope you guys and gals can handle that kind of intensity.

  4. It does one thing. Gravatar isn’t about social networking, mp3s, news, or any mashups thereof. It’s trying to solve one tiny problem on the web with laser-like focus: providing a web-friendly Globally Recognized Avatar for you across all the websites you visit. It’s almost a single serving website, and I say that with the utmost respect. So many websites fail because they try to do everything and be everything.

I highly recommend signing up for Gravatar. It’s totally painless. Once you do, your image will show up automatically in the comments here, and on any questions or answers you post to Stack Overflow, too. I think you’ll be surprised how many places on the web start to associate your Globally Recognized Avatar with the simple entry of your email address in a form. Satisfaction guaranteed, or your money back!

Another neat (and recently added) feature of Gravatars is a fallback. If someone doesn’t want to sign up for Gravatar — and hey, we’re totally cool with that, we don’t judge — Gravatar will render an Identicon for them automatically.

What are Identicons? Well, they’re a sort of digital fingerprint — a visual glyph that represents your IP address. Everyone stores IP addresses internally, but it’s considered borderline rude on today’s web to out someone’s IP address when they post content somewhere. The identicon is a way of showing the IP address without showing their IP address. Knowwhatimean?

identicon-samples

Plus, they’re kind of mesmerizingly beautiful. To me, anyway.

If you want to be totally anonymous, don’t worry. You still are. Or as much as you can be on the web, anyway. You’ll still get a unique image (on individual websites; it’s hashed per-site) associated with your content in the form of that Identicon — so we can know it was really you, Mr. Anonymous, and not another anonymous user pretending to be you. Well, assuming you always post from the same IP address, anyway.

If you’re interested in implementing Gravatars in your software or website, it’s dead easy. Here’s the code (yep, actual code! We are actually building this thing, believe it or not!) which renders the Gravatar for us.

const int size = 64;
const string maxrating = "PG";
const string gurl = "http://www.gravatar.com/avatar/";

var e = new UTF8Encoding();
var md5 = new MD5CryptoServiceProvider();

var sb = new StringBuilder(256);
sb.Append(gurl);
byte[] b;
if (String.IsNullOrEmpty(this.Email))
{
    b = md5.ComputeHash(e.GetBytes(r.IPAddress));
}
else
{
    b = md5.ComputeHash(e.GetBytes(this.Email));
}
for (int i = 0; i < b.Length; i++)
{
    sb.Append(b[i].ToString(”X2″).ToLower());
}
sb.Append(”?s=” + size.ToString());
sb.Append(”&d=identicon”);
sb.Append(”&r=” + maxrating);
return sb.ToString();

See? Easy.

* I’ve decided “Stack Overflow” is the preferred spelling and capitalization, since someone asked in the comments. Unless you’re referring explicitly to the website URL, then use stackoverflow.com.

Where do you stand on The Great Dub-Dub-Dub Debate?

Some people become very religious about whether URLs should have a www. prefix or not. Me, I’m a bit more sanguine: I think you need to choose your allegiance early in the lifecycle of your website, and stick to it.

So, for stackoverflow, we’re going with plain old stackoverflow.com, and dropping the www prefix.

The only downside of this choice that I can see is that setting cookies for a prefixless domain sets them across all subdomains, as noted by Stecki in the comments of my original blog post on this topic:

using a non-www-version of a webpage will lead to setting cookies for the whole domain, thus making cookieless domains (for example for fast cdn-like access of static resources like css, js and images) impossible.

That’s a bit of a downer, but our use of cookies should be quite minimal, so I’m OK with that tradeoff.

Now that we’ve chosen, we need to enforce that choice through URL rewriting. We’re using IIS7 with the brand spanking new (and wildly overdue) official Microsoft URL rewriting add-on.

The new rewrite GUI makes it fairly easy to set this stuff up; there’s even an import option where you can pull in existing Apache format .htaccess rewrite rules, which is nice. It’d be nicer still if we could just use the .htaccess format everyone already knows, but oh well.

Here’s the IIS7 rule to remove the WWW prefix from all incoming URLs. Cut and paste this XML fragment into your web.config file under <system.webServer> / <rewrite> / <rules>

<rule name="Remove WWW prefix" >
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.domain\.com" />
</conditions>
<action type="Redirect" url="http://domain.com/{R:1}"
    redirectType="Permanent" />
</rule>

Or, if you prefer to use the www prefix, you can do that too:

<rule name="Add WWW prefix" >
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^domain\.com" />
</conditions>
<action type="Redirect" url="http://www.domain.com/{R:1}"
    redirectType="Permanent" />
</rule>

You can also use the GUI to build these rewrite rules; same thing either way.

For reference, here’s what the enforce-www rule looks like in .htaccess form.

# Add WWW prefix
RewriteCond %HTTP_HOST ^domain\.com [I]
RewriteRule ^/(.*) http://www.domain.com/$1 [RP]

Have I mentioned how much I love XML?

Here’s one decision we’re pondering as we build stackoverflow, and I’d like to get your feedback on it:

Is it OK to require JavaScript to participate?

Note that by “participate” I mean “edit, answer or ask a question”. Of course passively reading a question and the associated answers will work fine without JavaScript enabled.

In addition to the aforementioned WMD editor, we’re using JQuery to build some cool interactive features into the site, most of which deal with asking and editing questions.

I asked this question on Twitter and got a “mostly yes” answer, with a few objections.

While we do believe in progressive enhancement, it’s possible that some of the features we’re building for asking and editing may be so dynamic that they do not degrade well, if at all.

What say you? Is it OK for a website in 2008 to require JavaScript for active (not passive) participation?