MCPcopy Create free account
hub / github.com/MTrop/DoomTools / meta

Method meta

src/main/java/net/mtrop/doom/tools/struct/HTMLWriter.java:860–863  ·  view source on GitHub ↗

Writes a single META tag with name and content attributes. @param name the name attribute. @param content the content attribute. @return this writer. @see #tag(String, Attribute...)

(String name, String content)

Source from the content-addressed store, hash-verified

858 * @see #tag(String, Attribute...)
859 */
860 public HTMLWriter meta(String name, String content)
861 {
862 return tag("meta", name(name), attribute("content", content));
863 }
864
865 /**
866 * Writes a single LINK tag with "stylesheet" relationship and an HREF to the resource.

Callers

nothing calls this directly

Calls 3

tagMethod · 0.95
nameMethod · 0.95
attributeMethod · 0.95

Tested by

no test coverage detected