Skip to content

Commit

Permalink
added showgoogle (22 getting it to look pretty)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsygankova committed Jul 15, 2019
1 parent 7e78fc2 commit a4fbf90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/github/mayhewsw/utils/HtmlGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public static String getHTMLfromTA(TextAnnotation ta, IntPair span, String id, S
int end = c.getEndSpan() - startoffset;

// important to also include 'cons' class, as it is a keyword in the html
text[start] = String.format("<span class='%s pointer cons' id='cons-%d-%d' title='%s'>%s", c.getLabel(), start, end, c.getLabel(), text[start]);
text[start] = String.format("<span class='%s pointer cons' id='cons-%d-%d' title='%s'>%s", "LOC", start, end, "LOC", text[start]);
text[end - 1] += "</span>";
}
}
Expand Down

0 comments on commit a4fbf90

Please sign in to comment.