Giter Club home page Giter Club logo

shiki-filename-copy-transformers's Introduction

Shiki Copy Button

A Shiki Transformer that adds a Copy button.

Install

Install the package:

npm install -D shiki-filename-copy-transformers

Add the transformer:

import { codeToHtml } from "shiki/bundle/full";
import { addCopyButton } from "shiki-filename-copy-transformers";

export async function highlight(code, lang, meta) {
  return await codeToHtml(code, {
    lang,
    // Optional parameter
    transformers: [addCopyButton(3000), addFilename("index.ts")],
  });
}

You can get the filename from the third parameters meta. Your markdown code block can look like this:

```js title="file.js"
import path from "path";

import adapter from "@sveltejs/adapter-node";
```

You will be able to get the title string from the third parameter meta.

Style

Add some basic styling to display the button and filename:

pre:has(code) {
  position: relative;
}

pre button.copy {
  position: absolute;
  right: 1rem;
  top: 1rem;
  height: 1.5rem;
  width: 1.5rem;
  padding: 0;
  display: flex;

  & span {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  & .ready {
    background: red;
    /* background-image: url(/icons/copy.svg); */
  }

  & .success {
    display: none;
    background: green;
    /* background-image: url(/icons/copy-success.svg); */
  }

  &.copied {
    & .success {
      display: block;
    }

    & .ready {
      display: none;
    }
  }
}

pre:has(.filename) {
  padding-top: 3rem;
}

pre .filename {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  translate: 0 -50%;
}

License

MIT

shiki-filename-copy-transformers's People

Contributors

myphz avatar

Watchers

 avatar

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.