Fixed linkify of pre formatted text

pull/162/head
M66B 5 years ago
parent fc88c720a3
commit 2e299494dd

@ -340,7 +340,7 @@ public class HtmlHelper {
public void head(Node node, int depth) {
if (links < MAX_AUTO_LINK && node instanceof TextNode) {
TextNode tnode = (TextNode) node;
String text = tnode.text();
String text = tnode.getWholeText();
Matcher matcher = pattern.matcher(text);
if (matcher.find()) {

Loading…
Cancel
Save