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

gitbook-plugin-gbook-codetabs

v1.0.2

Published

support @import and codetabs

Downloads

93

Readme

gitbook-plugin-gbook-codetabs

  • 目的,当然尽可能复用文件中的代码,不用复制粘贴反复修改
  • 为了尽量和 vscode markdown-preview-enhanced 插件 @import 一致而开发
    • 参考 https://shd101wyy.github.io/markdown-preview-enhanced/#/zh-cn/file-imports
    • 仅支持 @import "文件" {cmd...} 模式
    • 支持其大部分特性,详见示例
    • 支持大部分代码块展示
  • 整合 import 及 codetab 插件,修复了一些bug
  • 如果感觉不错请给 https://github.com/q9090960bnb3/gitbook-plugin-gbook-codetabs 点个小星星吧,谢谢
  • codetabs 特性
    • {tabname="file"} tab名称显示为 文件名
    • {title="xxx"} tab名称显示为 设置名称
    • {group="xx"} 将多个代码块整合在一个tab 中,其他信息以第一个group 代码块为准
    • {commit_file=true} 首行以注释方式显示文件名
    • 也支持手写代码块(非@import方式)
  • 其他兼容性请自行测试

how to use

## demo 1

{% codetabs -%}
@import "1.js" {code_block=true}
@import "1.js" {title="demo" code_block=true}
@import "1.js" {tabname="file" code_block=true}
@import "1.js" {title="commit" commit_file=true}
@import "1.js" {title="only one line" line_begin=0 line_end=1 code_block=true}
@import "1.html" {code_block=true}
@import "2.html" {title="测试中文" code_block=true}
@import "1.txt" {group="g1" as="py" title="这是python"}
@import "2.txt" {group="g1"}
{%- endcodetabs %}

### demo 2

{% codetabs -%}
@import "1.go"
@import "1.go" {title="我的golang"}
{%- endcodetabs %}

## demo 3

@import "1.go"

use in book.json

{
  "plugins": ["gbook-codetabs"]
}

display

demo

thanks

plugin-codetabs gitbook-plugin-prism-codetab-fox