}
public static LinkedListTree parseParaTag(String text) {
try {
JavadocParser parser = parserOn(text);
LinkedListTree result = (LinkedListTree)parser.paragraph_tag().getTree();
trimEOF(result);
return result;
} catch (IOException e) {
throw new SyntaxException(e);
} catch (MismatchedTokenException e) {