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

com.greenpepper.shaded.com.vladsch.flexmark.ast.StrongEmphasis Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.shaded.com.vladsch.flexmark.ast;

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

public class StrongEmphasis extends DelimitedNodeImpl {
    public StrongEmphasis() {
    }

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

    public StrongEmphasis(BasedSequence openingMarker, BasedSequence content, BasedSequence closingMarker) {
        super(openingMarker, content, closingMarker);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy