mirror of https://github.com/M66B/FairEmail.git
Auto-link shared links
This commit is contained in:
parent
d5b7df448c
commit
9a19cbeca4
|
@ -39,6 +39,8 @@ import androidx.lifecycle.Lifecycle;
|
|||
import androidx.lifecycle.LifecycleOwner;
|
||||
import androidx.preference.PreferenceManager;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
@ -220,8 +222,12 @@ public class ActivityCompose extends ActivityBase implements FragmentManager.OnB
|
|||
html = HtmlHelper.toHtml((Spanned) body, this);
|
||||
else {
|
||||
String text = body.toString();
|
||||
if (!TextUtils.isEmpty(text))
|
||||
if (!TextUtils.isEmpty(text)) {
|
||||
html = "<span>" + text.replaceAll("\\r?\\n", "<br>") + "</span>";
|
||||
Document d = JsoupEx.parse(html);
|
||||
HtmlHelper.autoLink(d, true);
|
||||
html = d.body().html();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue