node-prismjs 1.29.0+dfsg+~1.26.0-1 source package in Ubuntu

Changelog

node-prismjs (1.29.0+dfsg+~1.26.0-1) unstable; urgency=medium

  * Team upload
  * New upstream version 1.29.0+dfsg+~1.26.0

 -- Yadd <email address hidden>  Mon, 29 Aug 2022 10:37:28 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-prismjs_1.29.0+dfsg+~1.26.0-1.dsc 2.5 KiB e784623c6c5dd46bfd71693401c107285076bbfe0bc619c6bd12d4d264338d53
node-prismjs_1.29.0+dfsg+~1.26.0.orig-types-prismjs.tar.xz 5.9 KiB eb180c0257a22f30f7995c60de81360ac216d92899920c7644fb3ec2ec6ae1bd
node-prismjs_1.29.0+dfsg+~1.26.0.orig.tar.xz 2.1 MiB aab40ec119df1b2797329ffee6e1ef6aaac3367eb06a240a3d170957479dbc2c
node-prismjs_1.29.0+dfsg+~1.26.0-1.debian.tar.xz 4.2 KiB c4e64182b428eebaaf956e54f6c77e8463396652fc6608d5ea4b610b9b96b868

No changes file available.

Binary packages built by this source

node-prismjs: Lightweight, robust, elegant syntax highlighting

 A spin-off project from Dabblet. Some of its unique features include:
  * It’s tiny. The core is only 1.5KB minified & gzipped.
  * It’s incredibly extensible. Not only it’s easy to add new languages, but
    also to extend existing ones.
  * It encourages good author practices. Other highlighters encourage or even
    force you to use elements that are semantically wrong, like <pre> (on its
    own) or <script>. Prism forces you to use the only semantically correct
    element for marking up code: <code>.
  * One of its best features: The language definition is inherited. This means
    that if multiple code snippets have the same language, you can just define
    it once, in one of their common ancestors.
  * It looks good. All three of its existing themes.
  * It supports parallelism through Web Workers, for better performance in
    certain cases.
  * It doesn’t force you to use any Prism-specific markup, not even a
    Prism-specific class name, only standard markup you should be using anyway.
 .
 Node.js is an event-based server-side JavaScript engine.