!752
html {
S text = params.get("dialog");
if (empty(text)) ret "No text";
/*
O lister = getBot("#1003083");
if (lister == null) fail("no poems lister bot");
long id = cast call(lister, "saveText", text, "A user-supplied dialog");
ret "Poem saved as id " + id;*/
S id = findSnippetByText(text);
if (id != null)
ret "Text exists as " + formatSnippetID(id);
else {
id = createSuperHighSnippet(text, "A user-supplied dialog", 52, null, null);
ret "New text, saved as " + ahref(snippetLink(id), formatSnippetID(id));
}
}