Fix documentation.

This commit is contained in:
David Langley 2021-12-15 10:03:14 +00:00
parent bef238f851
commit 13dc2d5b76
3 changed files with 1 additions and 3 deletions

View File

@ -60,8 +60,6 @@ interface SendService {
* Method to quote an events content.
* @param quotedEvent The event to which we will quote it's content.
* @param text the text message to send
* @param msgType the message type: MessageType.MSGTYPE_TEXT (default) or MessageType.MSGTYPE_EMOTE
* @param autoMarkdown If true, the SDK will generate a formatted HTML message from the body text if markdown syntax is present
* @return a [Cancelable]
*/
fun sendQuotedTextMessage(quotedEvent: TimelineEvent, text: String): Cancelable

View File

@ -20,7 +20,6 @@ import android.content.Context
import android.graphics.Bitmap
import android.media.MediaMetadataRetriever
import androidx.exifinterface.media.ExifInterface
import okhttp3.internal.format
import org.matrix.android.sdk.api.session.content.ContentAttachmentData
import org.matrix.android.sdk.api.session.events.model.Content
import org.matrix.android.sdk.api.session.events.model.Event

View File

@ -40,6 +40,7 @@ internal class MarkdownParser @Inject constructor(
* Parses some input text and produces html.
* @param text An input CharSequence to be parsed.
* @param force Skips the check for detecting if the input contains markdown and always converts to html.
* @param advanced Whether to use the full markdown support or the simple version.
* @return TextContent containing the plain text and the formatted html if generated.
*/
fun parse(text: CharSequence, force: Boolean = false, advanced: Boolean = true): TextContent {