Index: /trunk/src/org/openstreetmap/josm/tools/WikiReader.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/WikiReader.java	(revision 5936)
+++ /trunk/src/org/openstreetmap/josm/tools/WikiReader.java	(revision 5937)
@@ -100,5 +100,7 @@
         boolean skip = false;
         String b = "";
+        String full = "";
         for (String line = in.readLine(); line != null; line = in.readLine()) {
+            full += line;
             if (line.contains("<div id=\"searchable\">")) {
                 inside = true;
@@ -121,4 +123,5 @@
                 //
                 b += line.replaceAll("<img ", "<img border=\"0\" ")
+                         .replaceAll("<span class=\"icon\">.</span>", "")
                          .replaceAll("href=\"/", "href=\"" + baseurl + "/")
                          .replaceAll(" />", ">")
@@ -134,4 +137,6 @@
         || b.indexOf(" does not exist. You can create it here.</p>") >= 0)
             return "";
+        if(b.isEmpty())
+            b = full;
         return "<html><base href=\""+url.toExternalForm() +"\"> " + b + "</html>";
     }
