Return the first sentence of the comment as an array of tags. Includes inline tags (i.e. {@link
reference} tags) but not block tags. Each section of plain text is represented as a {@link Tag}of {@linkplain Tag#kind() kind} "Text".Inline tags are represented as a {@link SeeTag} of kind "@see"and name "@link".
If the locale is English language, the first sentence is determined by the rules described in the Java Language Specification (first version): "This sentence ends at the first period that is followed by a blank, tab, or line terminator or at the first tagline.", in addition a line will be terminated by block HTML tags: <p> </p> <h1> <h2> <h3> <h4> <h5> <h6> <hr> <pre> or </pre>. If the locale is not English, the sentence end will be determined by {@link BreakIterator#getSentenceInstance(Locale)}.
@return an array of {@link Tag}s representing the first sentence of the comment