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

com.vladsch.flexmark.ext.gitlab.GitLabDel Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.ext.gitlab;

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

/**
 * A Del node
 */
public class GitLabDel extends GitLabInline {
    public GitLabDel() {
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy