mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Auto-link shared links
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user