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

info.bliki.wiki.template.UC Maven / Gradle / Ivy

The newest version!
package info.bliki.wiki.template;

import info.bliki.wiki.model.IWikiModel;

import java.util.List;

/**
 * A template parser function for {{uc: ... }} upper case
 * syntax. See Wikipedia -
 * Help:Variable#Formatting
 *
 */
public class UC extends AbstractTemplateFunction {
    public final static ITemplateFunction CONST = new UC();

    @Override
    public String parseFunction(List list, IWikiModel model, char[] src, int beginIndex, int endIndex, boolean isSubst) {
        if (list.size() > 0) {
            String result = isSubst ? list.get(0) : parseTrim(list.get(0), model);
            return result.toUpperCase();
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy