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

io.github.md2conf.title.processor.WikiTitleUtil Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package io.github.md2conf.title.processor;

public class WikiTitleUtil {


    protected static boolean isConfluenceWikiHeaderLine(String v) {
        String s = v.trim();
        return (s.startsWith("h1.")
                || s.startsWith("h2.")
                || s.startsWith("h3."))
                && s.length()>3;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy