diff --git a/src/components/card/CardSidebar.vue b/src/components/card/CardSidebar.vue index 403a9653c..5f260529f 100644 --- a/src/components/card/CardSidebar.vue +++ b/src/components/card/CardSidebar.vue @@ -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 {