enable linkify in description renderer
this restores the old behaviour of parsing plain text links into html link Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
@@ -203,7 +203,9 @@ import { formatFileSize } from '@nextcloud/files'
|
||||
import relativeDate from '../../mixins/relativeDate'
|
||||
import AttachmentList from './AttachmentList'
|
||||
|
||||
const markdownIt = new MarkdownIt()
|
||||
const markdownIt = new MarkdownIt({
|
||||
linkify: true,
|
||||
})
|
||||
markdownIt.use(MarkdownItTaskLists, { enabled: true, label: true, labelAfter: true })
|
||||
|
||||
const capabilities = window.OC.getCapabilities()
|
||||
@@ -603,6 +605,10 @@ export default {
|
||||
&::v-deep input {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
&::v-deep a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.modal__content {
|
||||
|
||||
Reference in New Issue
Block a user