Git Product home page Git Product logo

prismjs-bibtex's Introduction

PrismJS-BibTeX

npm package jsDelivr hits

A BibTeX language extension for PrismJS.

Usage

In HTML

Simply import the prism-bibtex.min.js (recommended at the end of body):

<script src="https://cdn.jsdelivr.net/npm/[email protected]/prism-bibtex.min.js">
</script>

I recommend using the SRI (Subresource Integrity) hash as well:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/prism-bibtex.js"
        integrity="sha256-A5GMUmGHpY8mVpfcaRLQFeHtmdjZLumKBOMpf81FXX0="
        crossorigin="anonymous" referrerpolicy="no-referrer">
</script>

Remember to import the PrismJS stylesheets and scripts before importing this extension. For example:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-solarizedlight.min.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/prism-bibtex.min.js">
</script>

In NodeJS

  1. Add the package to your project:

    $ npm install prismjs-bibtex
  2. Import prismjs-bibtex your .js file, after Prism:

    import Prism from 'prismjs';
    import 'prismjs-bibtex';

Examples

Check out some small BibTeX examples on the project webpage. You can also check the performance on large real-life .bib files below:

prismjs-bibtex's People

Contributors

dependabot[bot] avatar saswatpadhi avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

prismjs-bibtex's Issues

Gracefully handle invalid bibtex

First off, thanks a lot for this great prism extension! I've been using it in an online bibtex editor context and it's been working great for the most part, however I've noticed that it sometimes hangs itself when trying to parse invalid bibtex, which of course happens a lot during editing.

I've been able to reliably reproduce this by starting a bibtex file with:

@article{newpaper,
  title=

@article{existing,
  title={my old title}
}

Somehow, at this particular moment in editing, the plugin appears to go into an infinite loop, because the tab's CPU goes to 100% and freezes completely.

Any idea whether this can be fixed? Simply punting and giving up would be fine in my context (i.e., only highlight when valid).

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.