
com.g2forge.enigma.document.model.Emphasis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of en-document Show documentation
Show all versions of en-document Show documentation
Models, parsers and renderers for common documentation formats. This library is helpful for generating documentation and translating formats like MD, wikitext and office documents.
package com.g2forge.enigma.document.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
@AllArgsConstructor
public class Emphasis implements ISpan {
public enum Type {
Monospace,
Code,
Emphasis,
Strong,
Strikethrough;
}
protected final Type type;
protected final ISpan span;
}