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

com.antonioaltieri.telegram.botapi.types.StringHTML Maven / Gradle / Ivy

package com.antonioaltieri.telegram.botapi.types;

/**
 * Created by Antonio on 21/02/2016.
 */
public class StringHTML {
    public static String bold(String str){
        return ""+str+"";
    }
    public static String italic(String str){
        return ""+str+"";
    }
    public static String inlineLink(String text,String URL){
        return ""+URL+"";
    }

    public static String oneLineCode(String code){
        return ""+code+"";
    }
    public static String multiLineCode(String code){
        return "
"+code+"
"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy