Merge pull request #1890 from nextcloud/linkify

This commit is contained in:
Julius Härtl
2020-05-15 11:12:17 +02:00
committed by GitHub

View File

@@ -203,7 +203,9 @@ import { formatFileSize } from '@nextcloud/files'
import relativeDate from '../../mixins/relativeDate' import relativeDate from '../../mixins/relativeDate'
import AttachmentList from './AttachmentList' import AttachmentList from './AttachmentList'
const markdownIt = new MarkdownIt() const markdownIt = new MarkdownIt({
linkify: true,
})
markdownIt.use(MarkdownItTaskLists, { enabled: true, label: true, labelAfter: true }) markdownIt.use(MarkdownItTaskLists, { enabled: true, label: true, labelAfter: true })
const capabilities = window.OC.getCapabilities() const capabilities = window.OC.getCapabilities()
@@ -603,6 +605,10 @@ export default {
&::v-deep input { &::v-deep input {
min-height: auto; min-height: auto;
} }
&::v-deep a {
text-decoration: underline;
}
} }
.modal__content { .modal__content {