Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Glow is a small, but powerful syntax highligher for web:
Glow is the default highlighter for Nue web framework and works there "out of the box". Here's how to use Glow as a standalone library:
bun i nue-glow
// import highlighter
import { glow } from 'nue-glow'
const code = '<h1>Hello, World</h1>'
// render code
const html = glow(code, { language: 'html', numbered: true })
console.info(html) // <code language="html">...</code>
numbered
is a boolean flag indicating whether line numbers should be rendered.
language
tells Glow the language of the code. This is optional. When not provided, Glow attempts to guess the language. If you are formatting Markdown, the language parameter "md" must be given so that Glow can deal with all the special cases like "-" starts a new list item, instead of a deleted line.
<code language="html">...</code>
Here's how you integrate Glow to Marked:
import { marked } from 'marked'
import { glow } from 'nue-glow'
// setup a custom renderer for code blocks
const renderer = {
code(input, language) {
const html = glow(input, { language, numbered: true })
return `<pre>${ html }</pre>`
}
}
marked.use({ renderer })
// read Markdown with a Glow-formatted code block
const content = '...'
const html = marked.parse(content)
FAQs
Markdown syntax highlighter for CSS developers
The npm package nue-glow receives a total of 79 weekly downloads. As such, nue-glow popularity was classified as not popular.
We found that nue-glow demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.