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

me.mattstudios.mfmsg.base.internal.extension.node.Underline Maven / Gradle / Ivy

package me.mattstudios.mfmsg.base.internal.extension.node;

import org.commonmark.node.CustomNode;
import org.commonmark.node.Delimited;

public final class Underline extends CustomNode implements Delimited {

    private static final String DELIMITER = "__";

    @Override
    public String getOpeningDelimiter() {
        return DELIMITER;
    }

    @Override
    public String getClosingDelimiter() {
        return DELIMITER;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy