String data = tq.chompTo("->");
if (data.endsWith("-")) // i.e. was -->
data = data.substring(0, data.length() - 1);
Comment comment = new Comment(data, baseUri);
annotate(comment); // TODO - should annotations even apply to comments?
lines(comment, data);
add(comment);
}