!7 html { print("Wiki URI: " + uri); uri = dropSuffix("/", uri); uri = dropPrefix("/", uri); if (eq(uri, "import")) { triggerStandardAIImport(); ret "OK"; } if (possibleGlobalID(uri)) { AIConcept c = aiConceptsMap_cached().get(toLower(uri)); if (c == null) ret "Concept not found: " + toLower(uri); S html = h3(htmlencode(aiConceptToString(c))); if (nempty(c.imageMD5) && imageServerHas(c.imageMD5)) html += p(himg(imageServerLink(c.imageMD5))); ret html; } ret "hello"; }