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

com.vladsch.flexmark.ext.attributes.AttributesDelimiter Maven / Gradle / Ivy

package com.vladsch.flexmark.ext.attributes;

import com.vladsch.flexmark.util.sequence.BasedSequence;

/**
 * A empty implicit AttributesNode used to mark attribute span start
 */
public class AttributesDelimiter extends AttributesNode {
    public AttributesDelimiter() {
    }

    public AttributesDelimiter(BasedSequence chars) {
        super(chars);
    }

    public AttributesDelimiter(BasedSequence openingMarker, BasedSequence text, BasedSequence closingMarker) {
        super(openingMarker, text, closingMarker);
    }

    public AttributesDelimiter(BasedSequence chars, String attributesBlockText) {
        super(chars, attributesBlockText);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy