com.github.pwittchen.kirai.library.HtmlPiece Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
Kirai is flavored string formatting library
package com.github.pwittchen.kirai.library;
public final class HtmlPiece extends Piece {
private HtmlPiece(String key, Object value) {
super(key, value, new HtmlSyntax());
}
public static Piece put(String key, Object value) {
return new HtmlPiece(key, value);
}
}