saberland/saber

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:

https://github.com/saberland/saber/blob/4d5f4e33a3380fa26d831cd3fa22da9d0af3a37b/packages/saber/lib/markdown/link-plugin.js#L11-L16

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 -->

  1. In saber-config.js: plugins: [{ resolve: 'markdown-it-attrs' }]
  2. 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.

https://github.com/saberland/saber/blob/4d5f4e33a3380fa26d831cd3fa22da9d0af3a37b/packages/saber/lib/markdown/highlight-plugin.js#L96-L99

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

$100.00
Rewarded

Rewarded pull request

Recent activities

marchworks was rewarded by egoist for saberland/saber# 224
almost 6 years ago
marchworks submitted an output to  saberland/ saber# 224
almost 6 years ago