Class Sanitizer
- java.lang.Object
-
- io.jenkins.plugins.analysis.core.util.Sanitizer
-
public class Sanitizer extends Object
Sanitizes a piece of unsafe HTML code so that it can be rendered in a UI view.- Author:
- Ullrich Hafner
-
-
Constructor Summary
Constructors Constructor Description Sanitizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
render(j2html.tags.DomContent text)
Renders the specified HTML code.String
render(String html)
Renders the specified HTML code.
-
-
-
Method Detail
-
render
public String render(String html)
Renders the specified HTML code. Removes unsafe HTML constructs.- Parameters:
html
- the HTML to render- Returns:
- safe HTML
-
render
public String render(j2html.tags.DomContent text)
Renders the specified HTML code. Removes unsafe HTML constructs.- Parameters:
text
- the text to render- Returns:
- safe HTML
-
-