
org.commonmark.node.BulletList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonmark Show documentation
Show all versions of commonmark Show documentation
Core of commonmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)
package org.commonmark.node;
public class BulletList extends ListBlock {
private char bulletMarker;
@Override
public void accept(Visitor visitor) {
visitor.visit(this);
}
public char getBulletMarker() {
return bulletMarker;
}
public void setBulletMarker(char bulletMarker) {
this.bulletMarker = bulletMarker;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy