Пример #1
0
  /**
   * Append a comment.
   *
   * <p>Ex: &lt;!-- comment --&gt;
   *
   * @param comment The comment to append.
   * @return a reference to this builder.
   */
  public MarkupBuilder appendComment(String comment) {

    buffer.append(MarkupUtils.appendComment(comment));

    return this;
  }