Link attributes get overwritten #224
kidonng posted onGitHub
<!-- Please don't delete this template or we'll close your issue -->
<!-- Before creating an issue please make sure you are using the latest version of Saber. -->
<!-- Please confirm you will submit an issue. -->
<!-- Issues which contain questions or support requests will be closed. -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
- I confirm that this is an issue rather than a question.
<!-- Please ask questions via following several ways. -->
<!-- https://chat.saber.land/ -->
<!-- https://stackoverflow.com/questions/ask?tags=saberjs -->
Bug report
Some link attributes can't be modified via markdown-it plugins like markdown-it-attrs, such as target
and rel
, because they are hard-coded:
This may look more like a feature, but it is inconvenient if one wants to change the attributes to something else like rel="nofollow"
(must use HTML instead).
Version
0.6.7
Steps to reproduce
<!-- If you are reporting a bug that can ONLY be reproduced on your repository, PLEASE provide this repo link. That takes guessing work out of the way and saves us time. -->
<!-- You can also use this CodeSandbox starter https://bit.ly/2IlcpNF -->
- In
saber-config.js
:plugins: [{ resolve: 'markdown-it-attrs' }]
- Put a external link in a markdown page:
[GitHub](https://github.com/) { rel="nofollow" }
What is expected?
Output is one of the following results or likewise:
- (Overwrite)
<a href="https://github.com/" rel="nofollow" target="_blank">GitHub</a>
- (Join)
<a href="https://github.com/" rel="noopener noreferrer nofollow" target="_blank">GitHub</a>
What is actually happening?
Output is <a href="https://github.com/" rel="noopener noreferrer" target="_blank">GitHub</a>
(not containing rel="nofollow"
).
Other relevant information
Same for code blocks, but since their attributes are seldom modified, this should be considered fine.
And somehow related #199 (need an alternate syntax).
- Result of running
saber -v
: cli.js/0.6.7 win32-x64 node-v12.3.1 - Browser version (optional):
- Is Saber a global or local install? Local
- Which package manager did you use for the install? Yarn
- Does this issue occur when all plugins are disabled? No (apparently)
Fund this Issue
Rewarded pull request
Click to copy link
Recent activities