com.vladsch.flexmark.ast.MailLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark Show documentation
Show all versions of flexmark Show documentation
Core of flexmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
package com.vladsch.flexmark.ast;
import com.vladsch.flexmark.util.sequence.BasedSequence;
public class MailLink extends DelimitedLinkNode {
public MailLink() {
}
public MailLink(BasedSequence chars) {
super(chars);
}
public MailLink(BasedSequence openingMarker, BasedSequence text, BasedSequence closingMarker) {
super(openingMarker, text, closingMarker);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy