Update CHANGELOG
This commit is contained in:
parent
cca24090c1
commit
abeb5044af
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
# 4.3.1-SNAPSHOT
|
||||
* Fix DexGuard optimization issue ([#216])<br>Thanks [@francescocervone]
|
||||
|
||||
[#216]: https://github.com/noties/Markwon/pull/216
|
||||
[@francescocervone]: https://github.com/francescocervone
|
||||
|
||||
# 4.3.0
|
||||
* add `MarkwonInlineParserPlugin` in `inline-parser` module
|
||||
* `JLatexMathPlugin` now supports inline LaTeX structures via `MarkwonInlineParserPlugin`
|
||||
|
@ -25,6 +25,8 @@ public class StrikeHandler extends TagHandler {
|
||||
static {
|
||||
boolean hasMarkdownImplementation;
|
||||
try {
|
||||
// @since $nap; we class Class.forName instead of trying
|
||||
// to access the class by full qualified name (which caused issues with DexGuard)
|
||||
Class.forName("org.commonmark.ext.gfm.strikethrough.Strikethrough");
|
||||
hasMarkdownImplementation = true;
|
||||
} catch (Throwable t) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user