We're doing anchors wrong on the FAQ
It looks like when we converted the faq, we got most links as Trac links, like this:
```
== [#wombat Why do my pet wombats try to adjust my vidalia settings?] ==
```
But that actually creates a link _to_ an anchor called #wombat, which we never created. Instead, we should look at the documentation for "explicit ids", which would look more like this:
```
== Why do my pet wombats try to adjust my vidalia settings? == #wombats
```
You can also add explicit labels with the =#anchorname syntax, as in:
```
== Why do my pet wombats try to adjust my vidalia settings? ==
[=#wombats]
```
We should restore the old anchors, since plenty of stuff still links to them.
(See the wikiformatting help document on trac.)
issue