Giter Site home page Giter Site logo

Comments (7)

antfu avatar antfu commented on August 24, 2024 1

Still some refactor to do to support multiple token highlight

from shikiji.

fuma-nama avatar fuma-nama commented on August 24, 2024 1

I am willing to submit a fix

from shikiji.

fuma-nama avatar fuma-nama commented on August 24, 2024

Perhaps we can include other common symbols like " | . - ,. But that is possible to have edge cases where the word is separated into multiple tokens.

Quotes are usually separated into another token, so matching "jsx" will not work with options: "jsx" for example. We have to allow a word to transcend multiple tokens?

from shikiji.

antfu avatar antfu commented on August 24, 2024

Great, here is a reference in twoslash integration:

case 'highlight': {
if (renderer.nodesHighlight) {
actionsHighlights.push(() => {
const line = this.lines[node.line]
let charIndex = 0
let itemStart = line.children.length
let itemEnd = 0
line.children.forEach((token, index) => {
if (charIndex >= node.character && index < itemStart)
itemStart = index
if ((charIndex <= node.character + node.length) && index > itemEnd)
itemEnd = index
charIndex += getTokenString(token).length
})
if ((charIndex <= node.character + node.length))
itemEnd = line.children.length
const targets = line.children.slice(itemStart, itemEnd)
const length = targets.length
const highlighted = renderer.nodesHighlight?.call(this, node, targets) || targets
line.children.splice(itemStart, length, ...highlighted)
})
}
break
}

from shikiji.

brc-dd avatar brc-dd commented on August 24, 2024

I think vuejs/vitepress#3503 is also related to this. There, the text that's being matched against the regex is not the whole line instead individual tokens 👀 The comments like // [!code error] don't work if they are not entirely in the same text node.

from shikiji.

fuma-nama avatar fuma-nama commented on August 24, 2024

I think vuejs/vitepress#3503 is also related to this. There, the text that's being matched against the regex is not the whole line instead individual tokens 👀 The comments like // [!code error] don't work if they are not entirely in the same text node.

That is caused by the limitation of design rather than the transformer itself, adding comments after attributes is not valid in Vue. Therefore, you'll see a weird highlighting here:

<template>
  <div
    class="container max-w-250 mx-a my-10 min-h-250 vp-doc p4" // something
    of-hidden
  >
    <ShikijiMiniPlayground />
  </div>
</template>

Writing this in real code even gives you syntax errors, which is not supposed to work.

from shikiji.

antfu avatar antfu commented on August 24, 2024

@brc-dd Feel free to open an issue on https://github.com/shikijs/shiki and we could discuss what would be the solution for that :)

from shikiji.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.