Skip to content

Commit

Permalink
Turned on prettier and changed filter name
Browse files Browse the repository at this point in the history
  • Loading branch information
asegal-hs committed Nov 6, 2023
1 parent 8fcd5ef commit bfb78f5
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@
@JinjavaDoc(
value = "Closes open HTML tags in a string",
input = @JinjavaParam(value = "s", desc = "String to close", required = true),
snippets = {
@JinjavaSnippet(
code = "{{ \"<p> Hello, world\"|closehtml }}"
)
}
snippets = { @JinjavaSnippet(code = "{{ \"<p> Hello, world\"|closehtml }}") }
)
public class CloseHtmlFilter implements Filter{
public class CloseHtmlFilter implements Filter {

@Override
public String getName() {
return "render";
return "closehtml";
}

@Override
Expand Down

0 comments on commit bfb78f5

Please sign in to comment.