The full url is still shown in the rendered document
This is the expected behaviour in pagedown::html_paged documents.
The motivation is detailed in the documentation, see section 4.3 _Links_.
If you want to get rid off these urls, please insert this CSS rule in your documents:
a[href^="http"]:not([class="uri"])::after {
content: "";
}
Therefore, the urls will not be printed (I still don't understand the need of using links in this context).
Most helpful comment
This is the expected behaviour in
pagedown::html_pageddocuments.The motivation is detailed in the documentation, see section 4.3 _Links_.
If you want to get rid off these urls, please insert this CSS rule in your documents:
Therefore, the urls will not be printed (I still don't understand the need of using links in this context).