mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2025-12-08 19:05:54 +00:00
Merge pull request #1768 from Gustl22/quote
refactor 'QouteHandler' to 'QuoteHandler'
This commit is contained in:
commit
0604c24625
@ -26,7 +26,7 @@ import com.fastaccess.provider.timeline.handler.LinkHandler;
|
||||
import com.fastaccess.provider.timeline.handler.ListsHandler;
|
||||
import com.fastaccess.provider.timeline.handler.MarginHandler;
|
||||
import com.fastaccess.provider.timeline.handler.PreTagHandler;
|
||||
import com.fastaccess.provider.timeline.handler.QouteHandler;
|
||||
import com.fastaccess.provider.timeline.handler.QuoteHandler;
|
||||
import com.fastaccess.provider.timeline.handler.StrikethroughHandler;
|
||||
import com.fastaccess.provider.timeline.handler.SubScriptHandler;
|
||||
import com.fastaccess.provider.timeline.handler.SuperScriptHandler;
|
||||
@ -89,7 +89,7 @@ public class HtmlHelper {
|
||||
mySpanner.registerHandler("code", new PreTagHandler(windowBackground, false, theme));
|
||||
mySpanner.registerHandler("img", new DrawableHandler(textView, width));
|
||||
mySpanner.registerHandler("g-emoji", new EmojiHandler());
|
||||
mySpanner.registerHandler("blockquote", new QouteHandler(windowBackground));
|
||||
mySpanner.registerHandler("blockquote", new QuoteHandler(windowBackground));
|
||||
mySpanner.registerHandler("b", new BoldHandler());
|
||||
mySpanner.registerHandler("strong", new BoldHandler());
|
||||
mySpanner.registerHandler("i", new ItalicHandler());
|
||||
|
||||
@ -15,7 +15,7 @@ import lombok.AllArgsConstructor;
|
||||
* Created by Kosh on 23 Apr 2017, 11:30 AM
|
||||
*/
|
||||
|
||||
@AllArgsConstructor public class QouteHandler extends TagNodeHandler {
|
||||
@AllArgsConstructor public class QuoteHandler extends TagNodeHandler {
|
||||
|
||||
@ColorInt private int color;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user