All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javalite.templator.Esc Maven / Gradle / Ivy

The newest version!
package org.javalite.templator;

import org.javalite.common.Escape;

/**
 * @author Igor Polevoy on 1/15/15.
 */
public class Esc implements BuiltIn{

    @Override
    public String process(String input) {
        return Escape.html(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy