nue-glow

0.2.1 • Public • Published

Glow

Glow is a small, but powerful syntax highligher for web:

Read the introduction

Usage

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:

Installation

bun i nue-glow

JavaScript API

// 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>

Options

  1. numbered is a boolean flag indicating whether line numbers should be rendered.

  2. 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.

Return value

<code language="html">...</code>

Marked integration

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)

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.2.118latest

Version History

VersionDownloads (Last 7 Days)Published
0.2.118
0.2.01
0.1.33
0.1.21
0.1.10
0.1.00

Package Sidebar

Install

npm i nue-glow

Weekly Downloads

23

Version

0.2.1

License

MIT

Unpacked Size

34.7 kB

Total Files

14

Last publish

Collaborators

  • tipiirai