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

com.github.cukedoctor.markup.Asciidoc Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package com.github.cukedoctor.markup;

import io.github.robwin.markup.builder.Markup;

/**
 * Created by pestano on 17/02/16.
 */
public enum Asciidoc implements Markup {

    SIDEBAR_BLOCK("****");

    private final String markup;

    private Asciidoc(String markup) {
        this.markup = markup;
    }

    @Override
    public String toString() {
        return markup;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy