npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bbcoder

v1.0.2

Published

解析BBCode格式文本,并生成HTML文本。

Downloads

3

Readme

BBCoder

解析BBCode格式文本,并生成HTML文本。

支持自定义标签。

安装

npm install bbcoder

yarn add bbcoder

使用

import BBCoder from 'bbcoder'

let bbCoder = new BBCoder('[u]abc[/u]')
bbCoder.parse()
let html = bbCoder.html()
// <u>abc</u>

更多例子请查看测试用例。

配置

支持在创建BBCoder时传入一个选项,支持以下配置:

{
    autoCloseTag: false, // 自动关闭未关闭的标签,如[u] 会被补全为[u][/u]
    ignoreUncloseTag: false, // 是否忽略未关闭的标签,未关闭的标签不会显示,会被删掉
    outputUncloseTag: true, // 是否输出未关闭的标签,未关闭的标签会原样显示
}
let bbCoder = new BBCoder('[u]这[/u][i]',{
    ignoreUncloseTag: true
})
bbCoder.parse()
let html = bbCoder.html()
// <u>这</u>

新增标签

BBCoder默认支持以下标签的解析:u、i、url、img、quote、code、size、color、:-)。

你可以随意覆写或新增你想要的标签,通过向html函数传递你想要覆写的标签,标签名作为函数的名称,返回值为html标签。

通过这种方式,你可以极大地扩展BBCoder的解析能力。

let bbCoder = new BBCoder('[q]1[/q]')
bbCoder.parse()
let html = bbCoder.html({
    q(node,results){
        // node: 当前标签对应的AST节点
        // results: 数组,其子节点计算得到的结果,一般情况下,只需要results.join('')
        // 即可得到子标签的解析结果。
        return `<div>自定义标签解析${results.join('')}</div>`
    }
})
//<div>自定义标签解析1</div>