Remove URLs next to links when export to PDF using browser built-in print
Open
docs
enhancement
Hacktoberfest
import/export
minor
- Dominant language
- JavaScript
- Stars
- 10.1k
- Forks
- 1.1k
- PR merge metrics
- No merged PRs in 30d
Description
When I export a note to PDF by Chrome built-in print, the URL will show next to the link,
like this

The link is still available after export to PDF, so it seems we can remove the URL after the link?
And this can be done by adding CSS rule.
```css
@media print {
a[href]::after {
content: none !important;
}
}
```
Contributor guide
Assessment
This issue has not been assessed yet.