Markdown support disabled by default

This commit is contained in:
Thomas 2024-01-16 10:25:46 +01:00
parent 1a237e00c3
commit 9d1435c1b5
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ public class SpannableHelper {
} else {
initialContent = new SpannableString(text);
}
boolean markdownSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_MARKDOWN_SUPPORT), true);
boolean markdownSupport = sharedpreferences.getBoolean(context.getString(R.string.SET_MARKDOWN_SUPPORT), false);
//Get all links
SpannableStringBuilder content;
if (markdownSupport && convertMarkdown) {

View File

@ -59,7 +59,7 @@
app:title="@string/timeline_scrollbar" />
<SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
app:iconSpaceReserved="false"
app:key="@string/SET_MARKDOWN_SUPPORT"
app:singleLineTitle="false"