/ General styling for external links /
.cm-hmd-external-link .cm-underline,
.external-link {
text-decoration: initial !important;
}
/ Styling for Reading View /
.markdown-preview-view .external-link::before {
content: "🔗"; / Insert the emoticon /
margin-right: 5px; / Adjust spacing between the emoticon and link text /
cursor: pointer; / Set cursor to pointer /
}
/ Styling for Live Preview /
.markdown-source-view.mod-cm6.is-live-preview .cm-link .cm-underline::before {
content: "🔗"; / Insert the emoticon /
margin-right: 5px; / Adjust spacing between the emoticon and link text /
cursor: pointer; / Set cursor to pointer /
}
It disables this css snippet too.
/ General styling for external links / .cm-hmd-external-link .cm-underline, .external-link { text-decoration: initial !important; }
/ Styling for Reading View / .markdown-preview-view .external-link::before {
content: "🔗"; / Insert the emoticon / margin-right: 5px; / Adjust spacing between the emoticon and link text / cursor: pointer; / Set cursor to pointer / }
/ Styling for Live Preview / .markdown-source-view.mod-cm6.is-live-preview .cm-link .cm-underline::before { content: "🔗"; / Insert the emoticon / margin-right: 5px; / Adjust spacing between the emoticon and link text / cursor: pointer; / Set cursor to pointer / }