Package icyllis.modernui.markdown.core
Class CorePlugin
java.lang.Object
icyllis.modernui.markdown.core.CorePlugin
- All Implemented Interfaces:
MarkdownPlugin
-
Nested Class Summary
Nested classes/interfaces inherited from interface icyllis.modernui.markdown.MarkdownPlugin
MarkdownPlugin.Registry -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidbeforeSetText(TextView textView, Spanned markdown) This method will be called before callingTextView#setText.voidconfigureConfig(MarkdownConfig.Builder builder) static CorePlugincreate()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface icyllis.modernui.markdown.MarkdownPlugin
afterRender, afterSetText, beforeRender, configure, configureParser, configureTheme, processMarkdown
-
Field Details
-
CORE_ORDERED_LIST_ITEM_NUMBER
- See Also:
-
-
Method Details
-
create
-
configureConfig
- Specified by:
configureConfigin interfaceMarkdownPlugin- Parameters:
builder-
-
beforeSetText
Description copied from interface:MarkdownPluginThis method will be called before callingTextView#setText.It can be useful to prepare a TextView for markdown.
- Specified by:
beforeSetTextin interfaceMarkdownPlugin- Parameters:
textView- TextView to whichmarkdownwill be appliedmarkdown- Rendered markdown
-