In the code snippet at the Usage section, the new MarkdownView constructor is used but the variable data type is still MDFXNode:
import com.sandec.mdfx.MarkdownView;
MDFXNode mdfx = new MarkdownView("your-markdown"); // Invalid data type
content.getStylesheets().add("/com/sandec/mdfx/mdfx-default.css");
In the code snippet at the Usage section, the new
MarkdownView
constructor is used but the variable data type is stillMDFXNode
: