Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[[TOC]] links broken with Badges #1985

Open
1 task done
brindosch opened this issue Oct 26, 2019 · 6 comments · May be fixed by #2210
Open
1 task done

[[TOC]] links broken with Badges #1985

brindosch opened this issue Oct 26, 2019 · 6 comments · May be fixed by #2210
Labels
contribution welcome Contributions welcome has workaround Has a workaround type: bug Something isn't working

Comments

@brindosch
Copy link

  • I confirm that this is an issue rather than a question.

Bug report

If [[TOC]] is used in a page where a header has a badge, the link contains also the badge content.

Steps to reproduce

  • Add header to page: ### TEXT <Badge text="TBA 2.1+"/>
  • Add [[TOC]] to page
  • The TOC link to ### TEXT will be #text-badge-text-tba-2-1 instead of #text

What is expected?

  • Badges should not break the link

What is actually happening?

  • TOC links to headers with badges are broken

Other relevant information

  • Output of npx vuepress info in my VuePress project:

    System:
    OS: Linux 4.4 Ubuntu 16.04.6 LTS (Xenial Xerus)
    CPU: (4) x64 Intel(R) Core(TM) i5-4670K CPU @ 3.40GHz
    Binaries:
    Node: 12.11.1 - /usr/bin/node
    Yarn: 1.19.1 - /usr/bin/yarn
    npm: 6.11.3 - /usr/bin/npm
    Browsers:
    Chrome: Not Found
    Firefox: 70.0
    npmPackages:
    @vuepress/core: 1.2.0
    @vuepress/theme-default: 1.2.0
    vuepress: ^1.2.0 => 1.2.0
    npmGlobalPackages:
    vuepress: Not Found

@abernov
Copy link

abernov commented Oct 26, 2019

Problem in markdown-it-table-of-contents plugin.

It needs to be replaced with a new one!
It’s not difficult to develop such a plugin

@kefranabg kefranabg added type: bug Something isn't working contribution welcome Contributions welcome labels Oct 27, 2019
@kefranabg
Copy link
Collaborator

kefranabg commented Oct 27, 2019

@abernov The problem is that VuePress and markdown-it-table-of-contents are not applying the slugify
function on the same header link.

VuePress will use TEXT and markdown-it-table-of-contents will use TEXT <Badge text="TBA 2.1+"/>

@kefranabg
Copy link
Collaborator

As a workaround, you can use a custom markdown slugify function.

@kefranabg kefranabg added the has workaround Has a workaround label Oct 27, 2019
@abernov
Copy link

abernov commented Oct 29, 2019

@kefranabg
Vuepress passes to markdown-it-table-of-content its own slugify function.

It is possible to rewrite this function so that it removes the badge.

@kefranabg
Copy link
Collaborator

@abernov yes this is what I suggested in the last comment, but this is a workaround, not a fix.

Rewrite the slugify function we pass to markdown-it-table-of-content to remove badges will work, but later we'll have a new bug report saying it's not working with headers containing emojis and probably other things (so it will be hard to maintain).

The clean way to fix this would be to standardize the way vuepress and markdown-it-table-of-contents parse a header title.

@dlecan
Copy link

dlecan commented Oct 7, 2020

Here is the code I've used to fix this issue on my site:

In your config.js:

const { slugify: vuePressSlugify } = require("@vuepress/shared-utils");

function customSlugifyToHandleBadges(str) {
 // Remove badges and use original slugify function
  return vuePressSlugify(str.replace(/<Badge[^>]*\/>/, ""));
}
...
module.exports = {
...
  markdown: {
    slugify: customSlugifyToHandleBadges,
    toc: {
      slugify: customSlugifyToHandleBadges,
    },
  },
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
contribution welcome Contributions welcome has workaround Has a workaround type: bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants